prosperity3bt 0.5.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
prosperity3bt/data.py CHANGED
@@ -8,6 +8,11 @@ LIMITS = {
8
8
  "RAINFOREST_RESIN": 50,
9
9
  "KELP": 50,
10
10
  "SQUID_INK": 50,
11
+ "CROISSANTS": 250,
12
+ "JAMS": 350,
13
+ "DJEMBES": 60,
14
+ "PICNIC_BASKET1": 60,
15
+ "PICNIC_BASKET2": 100,
11
16
  }
12
17
 
13
18
 
@@ -104,8 +109,7 @@ def read_day_data(file_reader: FileReader, round_num: int, day_num: int, no_name
104
109
  for suffix in trades_suffixes:
105
110
  with file_reader.file([f"round{round_num}", f"trades_round_{round_num}_day_{day_num}_{suffix}.csv"]) as file:
106
111
  if file is None:
107
- trades_data_type = "Anonymized" if suffix == "nn" else "De-anonymized"
108
- raise ValueError(f"{trades_data_type} trades data is not available for round {round_num} day {day_num}")
112
+ continue
109
113
 
110
114
  for line in file.read_text(encoding="utf-8").splitlines()[1:]:
111
115
  columns = line.split(";")
File without changes