python-ballchasing 0.4.1__tar.gz → 0.5.1__tar.gz

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.
Files changed (30) hide show
  1. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/PKG-INFO +5 -5
  2. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/README.md +2 -2
  3. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/api.py +120 -85
  4. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/constants.py +84 -81
  5. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/deep_group.py +27 -27
  6. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/deep_replay.py +16 -16
  7. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/shared.py +33 -8
  8. python_ballchasing-0.5.1/ballchasing/util/__init__.py +4 -0
  9. python_ballchasing-0.5.1/ballchasing/util/dates.py +35 -0
  10. python_ballchasing-0.5.1/ballchasing/util/iterators.py +118 -0
  11. python_ballchasing-0.5.1/ballchasing/util/replays.py +185 -0
  12. python_ballchasing-0.4.1/ballchasing/util.py → python_ballchasing-0.5.1/ballchasing/util/stats.py +7 -30
  13. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/pyproject.toml +3 -3
  14. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/python_ballchasing.egg-info/PKG-INFO +5 -5
  15. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/python_ballchasing.egg-info/SOURCES.txt +6 -1
  16. python_ballchasing-0.5.1/scripts/get_maps.py +147 -0
  17. python_ballchasing-0.5.1/scripts/test_typed.py +88 -0
  18. python_ballchasing-0.4.1/scripts/test_typed.py +0 -35
  19. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/LICENSE +0 -0
  20. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/__init__.py +0 -0
  21. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/stats_info.tsv +0 -0
  22. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/__init__.py +0 -0
  23. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/shallow_group.py +0 -0
  24. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/ballchasing/typed/shallow_replay.py +0 -0
  25. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/python_ballchasing.egg-info/dependency_links.txt +0 -0
  26. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/python_ballchasing.egg-info/requires.txt +0 -0
  27. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/python_ballchasing.egg-info/top_level.txt +0 -0
  28. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/scripts/make_types.py +0 -0
  29. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/scripts/test.py +0 -0
  30. {python_ballchasing-0.4.1 → python_ballchasing-0.5.1}/setup.cfg +0 -0
@@ -1,15 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-ballchasing
3
- Version: 0.4.1
3
+ Version: 0.5.1
4
4
  Summary: A Python wrapper around the Ballchasing API
5
5
  Author-email: Rolv-Arild Braaten <rolv_arild@hotmail.com>
6
6
  License: MIT License
7
7
  Project-URL: Homepage, https://github.com/Rolv-Arild/python-ballchasing
8
8
  Project-URL: Download, https://pypi.python.org/pypi/python-ballchasing
9
- Classifier: Programming Language :: Python :: 3.9
9
+ Classifier: Programming Language :: Python :: 3.10
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Operating System :: OS Independent
12
- Requires-Python: >=3.9
12
+ Requires-Python: >=3.10
13
13
  Description-Content-Type: text/markdown
14
14
  License-File: LICENSE
15
15
  Requires-Dist: requests
@@ -78,7 +78,7 @@ for group in groups:
78
78
  # Download the group
79
79
  api.download_group(
80
80
  group_id=group["id"],
81
- folder="/path/to/destination/"
81
+ path="/path/to/destination/"
82
82
  recursive=True, # To download all the replays and retain the group structure with subfolders
83
83
  )
84
84
 
@@ -88,7 +88,7 @@ for group in groups:
88
88
  deep=True, # To get detailed replay info
89
89
  )
90
90
  for replay in replays:
91
- api.download_replay(replay_id=replay["id"], folder="/path/to/destination/") # You could also download like this
91
+ api.download_replay(replay_id=replay["id"], path="/path/to/destination/") # You could also download like this
92
92
  ```
93
93
 
94
94
  ---
@@ -61,7 +61,7 @@ for group in groups:
61
61
  # Download the group
62
62
  api.download_group(
63
63
  group_id=group["id"],
64
- folder="/path/to/destination/"
64
+ path="/path/to/destination/"
65
65
  recursive=True, # To download all the replays and retain the group structure with subfolders
66
66
  )
67
67
 
@@ -71,7 +71,7 @@ for group in groups:
71
71
  deep=True, # To get detailed replay info
72
72
  )
73
73
  for replay in replays:
74
- api.download_replay(replay_id=replay["id"], folder="/path/to/destination/") # You could also download like this
74
+ api.download_replay(replay_id=replay["id"], path="/path/to/destination/") # You could also download like this
75
75
  ```
76
76
 
77
77
  ---
@@ -1,17 +1,20 @@
1
1
  import os
2
2
  import time
3
+ from concurrent.futures import ThreadPoolExecutor
3
4
  from datetime import datetime
4
5
  from pathlib import Path
5
- from typing import Optional, Union, List, BinaryIO, Iterator
6
+ from typing import BinaryIO, Iterator
6
7
  from urllib.parse import parse_qs, urlparse
7
8
 
8
- from requests import sessions, Response, ConnectionError, HTTPError
9
+ from requests import sessions, Response, ConnectionError
9
10
 
10
- from ballchasing.constants import GroupSortBy, SortDir, AnyPlaylist, AnyMap, AnySeason, AnyRank, AnyReplaySortBy, \
11
- AnySortDir, AnyVisibility, AnyGroupSortBy, AnyPlayerIdentification, AnyTeamIdentification, AnyMatchResult
11
+ from ballchasing.constants import GroupSortBy, SortDir, AnySeason, AnyRank, AnyReplaySortBy, AnySortDir, \
12
+ AnyVisibility, AnyGroupSortBy, AnyPlayerIdentification, AnyTeamIdentification, AnyMatchResult, NoneOrMore
12
13
  from ballchasing.typed import DeepReplay, ShallowReplay, DeepGroup, ShallowGroup
13
14
  from .typed.shared import BaseGroup, BasicGroup
14
- from .util import to_rfc3339, parse_replay_stats
15
+ from .util.dates import to_rfc3339
16
+ from .util.iterators import deduplicate as deduplicator
17
+ from .util.stats import parse_replay_stats
15
18
 
16
19
  DEFAULT_URL = "https://ballchasing.com/api"
17
20
 
@@ -25,11 +28,11 @@ class BallchasingApi:
25
28
  self,
26
29
  auth_key: str,
27
30
  *,
28
- sleep_time_on_rate_limit: Optional[float] = None,
31
+ sleep_time_on_rate_limit: float | None = None,
29
32
  print_on_rate_limit: bool = False,
30
- base_url=None,
31
- do_initial_ping=True,
32
- typed=False,
33
+ base_url: str | None = None,
34
+ do_initial_ping: bool = True,
35
+ typed: bool = False,
33
36
  ):
34
37
  """
35
38
 
@@ -117,6 +120,8 @@ class BallchasingApi:
117
120
  time.sleep(retry_after)
118
121
  elif self.sleep_time_on_rate_limit:
119
122
  time.sleep(self.sleep_time_on_rate_limit)
123
+ elif r.status_code == 504:
124
+ raise ConnectionError("Gateway Timeout. The server did not respond in time.")
120
125
  else:
121
126
  r.raise_for_status() # Raise an error for any other status code'
122
127
  except ConnectionError as e:
@@ -141,58 +146,69 @@ class BallchasingApi:
141
146
  self._ping_result = result
142
147
  return result
143
148
 
144
- def _iterable_from_request(self, url, params):
145
- # Shared by get_replays and get_groups
149
+ def _iterable_from_request(self, url, params, prefetch=True):
150
+ # Shared by get_replays and get_groups.
151
+ # When prefetch=True, the next page is requested in a background
152
+ # thread *before* yielding, so network I/O overlaps with the
153
+ # consumer processing items. When prefetch=False (e.g. deep mode
154
+ # where the consumer also makes API calls), the next request is
155
+ # submitted *after* yielding to avoid doubling the request rate.
146
156
  remaining = params["count"]
147
- # return_length = True
148
- while remaining > 0:
149
- request_count = min(remaining, 200)
150
- params["count"] = request_count
151
- try:
152
- d = self._request(url, "GET", params=params).json()
153
- except HTTPError as e:
154
- if e.response.status_code == 504:
155
- # Gateway Timeout, retry
156
- time.sleep(5)
157
- continue
158
- else:
159
- raise e
160
157
 
161
- batch = d["list"][:request_count]
162
- yield from batch
158
+ def fetch_page(p):
159
+ return self._request(url, "GET", params=p).json()
160
+
161
+ with ThreadPoolExecutor(max_workers=1) as executor:
162
+ params["count"] = min(remaining, 200)
163
+ future = executor.submit(fetch_page, dict(params))
163
164
 
164
- if "next" not in d:
165
- break
165
+ while remaining > 0:
166
+ d = future.result()
167
+ batch = d["list"][:min(remaining, 200)]
168
+ remaining -= len(batch)
166
169
 
167
- next_url = d["next"]
168
- remaining -= len(batch)
169
- params["after"] = parse_qs(urlparse(next_url).query)["after"][0]
170
+ has_next = "next" in d and remaining > 0
171
+ if has_next:
172
+ next_url = d["next"]
173
+ params["after"] = parse_qs(urlparse(next_url).query)["after"][0]
174
+ params["count"] = min(remaining, 200)
175
+ if prefetch:
176
+ future = executor.submit(fetch_page, dict(params))
177
+
178
+ yield from batch
179
+
180
+ if not has_next:
181
+ break
182
+ if not prefetch:
183
+ future = executor.submit(fetch_page, dict(params))
170
184
 
171
185
  def get_replays(
172
186
  self,
173
187
  *,
174
- title: Optional[str] = None,
175
- player_name: Optional[Union[str, List[str]]] = None,
176
- player_id: Optional[Union[str, List[str]]] = None,
177
- playlist: Optional[Union[AnyPlaylist, List[AnyPlaylist]]] = None,
178
- season: Optional[Union[AnySeason, List[AnySeason]]] = None,
179
- match_result: Optional[Union[AnyMatchResult, List[AnyMatchResult]]] = None,
180
- min_rank: Optional[AnyRank] = None,
181
- max_rank: Optional[AnyRank] = None,
182
- pro: Optional[bool] = None,
183
- uploader: Optional[str] = None,
184
- group_id: Optional[Union[str, List[str]]] = None,
185
- map_id: Optional[Union[AnyMap, List[AnyMap]]] = None,
186
- created_before: Optional[Union[str, datetime]] = None,
187
- created_after: Optional[Union[str, datetime]] = None,
188
- replay_after: Optional[Union[str, datetime]] = None,
189
- replay_before: Optional[Union[str, datetime]] = None,
188
+ title: NoneOrMore[str] = None,
189
+ player_name: NoneOrMore[str] = None,
190
+ player_id: NoneOrMore[str] = None,
191
+ playlist: NoneOrMore[str] = None,
192
+ season: NoneOrMore[AnySeason] = None,
193
+ match_result: NoneOrMore[AnyMatchResult] = None,
194
+ min_rank: AnyRank | None = None,
195
+ max_rank: AnyRank | None = None,
196
+ pro: bool | None = None,
197
+ uploader: str | None = None,
198
+ group_id: NoneOrMore[str] = None,
199
+ map_id: NoneOrMore[str] = None,
200
+ created_before: str | datetime | None = None,
201
+ created_after: str | datetime | None = None,
202
+ replay_after: str | datetime | None = None,
203
+ replay_before: str | datetime | None = None,
190
204
  count: int = 150,
191
- sort_by: Optional[AnyReplaySortBy] = None,
205
+ sort_by: AnyReplaySortBy | None = None,
192
206
  sort_dir: AnySortDir = SortDir.DESCENDING,
193
207
  deep: bool = False,
194
- typed: Optional[bool] = None,
195
- ) -> Iterator[Union[dict, ShallowReplay, DeepReplay]]:
208
+ typed: bool | None = None,
209
+ deduplicate: bool = False,
210
+ disable_prefetch: bool | None = None,
211
+ ) -> Iterator[dict | ShallowReplay | DeepReplay]:
196
212
  """
197
213
  This endpoint lets you filter and retrieve replays. The implementation returns an iterator.
198
214
 
@@ -226,12 +242,15 @@ class BallchasingApi:
226
242
  :param sort_dir: sort direction
227
243
  :param deep: whether to get full stats for each replay (will be much slower).
228
244
  :param typed: whether to return a typed object (default is self.typed).
245
+ :param deduplicate: whether to deduplicate replays that seem to be the same game.
246
+ :param disable_prefetch: whether to disable prefetching replays.
229
247
  :return: an iterator over the replays returned by the API.
230
248
  """
231
249
  url = f"{self.base_url}/replays"
232
250
  params = {"title": title, "player-name": player_name, "player-id": player_id, "playlist": playlist,
233
251
  "season": season, "match-result": match_result, "min-rank": min_rank, "max-rank": max_rank,
234
- "pro": pro, "uploader": uploader, "group": group_id, "map": map_id,
252
+ "pro": str(pro).lower() if isinstance(pro, bool) else pro, "uploader": uploader, "group": group_id,
253
+ "map": map_id,
235
254
  "created-before": to_rfc3339(created_before), "created-after": to_rfc3339(created_after),
236
255
  "replay-date-after": to_rfc3339(replay_after), "replay-date-before": to_rfc3339(replay_before),
237
256
  "count": count, "sort-by": sort_by, "sort-dir": sort_dir}
@@ -239,14 +258,23 @@ class BallchasingApi:
239
258
  if typed is None:
240
259
  typed = self.typed
241
260
 
242
- iterator = self._iterable_from_request(url, params)
261
+ if disable_prefetch is None:
262
+ disable_prefetch = deep
263
+
264
+ iterator = self._iterable_from_request(url, params, prefetch=not disable_prefetch)
243
265
  if deep:
244
- iterator = (self.get_replay(r["id"], typed=typed) for r in iterator)
245
- elif typed:
246
- iterator = (ShallowReplay(**r) for r in iterator)
266
+ iterator = (self.get_replay(r["id"]) for r in iterator)
267
+ if deduplicate:
268
+ # Deep replays have match and replay IDs to deduplicate with. For shallow replays we check dates.
269
+ iterator = deduplicator(iterator, check_dates=not deep)
270
+ if typed:
271
+ if deep:
272
+ iterator = (DeepReplay(**r) for r in iterator)
273
+ else:
274
+ iterator = (ShallowReplay(**r) for r in iterator)
247
275
  yield from iterator
248
276
 
249
- def get_replay(self, replay_id: str, *, typed: Optional[bool] = None) -> Union[dict, DeepReplay]:
277
+ def get_replay(self, replay_id: str, *, typed: bool | None = None) -> dict | DeepReplay:
250
278
  """
251
279
  Retrieve a given replay’s details and stats.
252
280
 
@@ -272,10 +300,10 @@ class BallchasingApi:
272
300
 
273
301
  def upload_replay(
274
302
  self,
275
- replay_file: Union[str, Path, BinaryIO],
303
+ replay_file: str | Path | BinaryIO,
276
304
  *,
277
- visibility: Optional[AnyVisibility] = None,
278
- group: Optional[str] = None
305
+ visibility: AnyVisibility | None = None,
306
+ group: str | None = None
279
307
  ) -> dict:
280
308
  """
281
309
  Use this API to upload a replay file to ballchasing.com.
@@ -303,17 +331,18 @@ class BallchasingApi:
303
331
  def get_groups(
304
332
  self,
305
333
  *,
306
- name: Optional[str] = None,
307
- creator: Optional[str] = None,
308
- group: Optional[str] = None,
309
- created_before: Optional[Union[str, datetime]] = None,
310
- created_after: Optional[Union[str, datetime]] = None,
334
+ name: str | None = None,
335
+ creator: str | None = None,
336
+ group: str | None = None,
337
+ created_before: str | datetime | None = None,
338
+ created_after: str | datetime | None = None,
311
339
  count: int = 200,
312
340
  sort_by: AnyGroupSortBy = GroupSortBy.CREATED,
313
341
  sort_dir: AnySortDir = SortDir.DESCENDING,
314
342
  deep: bool = False,
315
- typed: bool = None,
316
- ) -> Iterator[Union[dict, ShallowGroup, DeepGroup]]:
343
+ typed: bool | None = None,
344
+ disable_prefetch: bool | None = None,
345
+ ) -> Iterator[dict | ShallowGroup | DeepGroup]:
317
346
  """
318
347
  This endpoint lets you filter and retrieve replay groups.
319
348
 
@@ -331,12 +360,17 @@ class BallchasingApi:
331
360
  :param sort_dir: Sort direction.
332
361
  :param deep: whether to get full stats for each group (will be much slower).
333
362
  :param typed: whether to return a typed object (default is self.typed).
363
+ :param disable_prefetch: whether to disable prefetching.
334
364
  :return: an iterator over the groups returned by the API.
335
365
  """
336
366
  url = f"{self.base_url}/groups/"
337
367
  params = {"name": name, "creator": creator, "group": group, "created-before": to_rfc3339(created_before),
338
368
  "created-after": to_rfc3339(created_after), "count": count, "sort-by": sort_by, "sort-dir": sort_dir}
339
- iterator = self._iterable_from_request(url, params)
369
+
370
+ if disable_prefetch is None:
371
+ disable_prefetch = deep
372
+
373
+ iterator = self._iterable_from_request(url, params, prefetch=not disable_prefetch)
340
374
  if typed is None:
341
375
  typed = self.typed
342
376
  if deep:
@@ -351,7 +385,7 @@ class BallchasingApi:
351
385
  name: str,
352
386
  player_identification: AnyPlayerIdentification,
353
387
  team_identification: AnyTeamIdentification,
354
- parent: Optional[str] = None
388
+ parent: str | None = None
355
389
  ) -> dict:
356
390
  """
357
391
  Use this API to create a new replay group.
@@ -376,8 +410,8 @@ class BallchasingApi:
376
410
  self,
377
411
  group_id: str,
378
412
  *,
379
- typed: Optional[bool] = None
380
- ) -> Union[dict, DeepGroup]:
413
+ typed: bool | None = None
414
+ ) -> dict | DeepGroup:
381
415
  """
382
416
  This endpoint retrieves a specific replay group info and stats given its id.
383
417
 
@@ -412,11 +446,11 @@ class BallchasingApi:
412
446
 
413
447
  def get_group_replays(
414
448
  self,
415
- group: Union[str, dict, BasicGroup],
449
+ group: str | dict | BasicGroup,
416
450
  *,
417
451
  deep: bool = False,
418
- typed: Optional[bool] = None
419
- ) -> Iterator[Union[dict, ShallowReplay, DeepReplay]]:
452
+ typed: bool | None = None
453
+ ) -> Iterator[dict | ShallowReplay | DeepReplay]:
420
454
  """
421
455
  Finds all replays in a group, including child groups.
422
456
 
@@ -425,35 +459,36 @@ class BallchasingApi:
425
459
  :param typed: whether to return a typed object (default is self.typed).
426
460
  :return: an iterator over all the replays in the group.
427
461
  """
428
- for path in self.get_group_tree(group, deep=deep, typed=typed):
429
- group, replay = path
462
+ for path, replay in self.get_group_tree(group, deep=deep, typed=typed):
430
463
  yield replay
431
464
 
432
465
  def get_group_tree(
433
466
  self,
434
- group: Union[str, dict, BaseGroup],
467
+ group: str | dict | BaseGroup,
435
468
  *,
436
469
  deep: bool = False,
437
- typed: Optional[bool] = None
438
- ):
470
+ typed: bool | None = None
471
+ ) -> Iterator[tuple[list[str], dict | ShallowReplay | DeepReplay]]:
439
472
  """
440
- Finds all replays in a group, and includes the groups leading up to the replays.
473
+ Finds all replays in a group, and includes the group path leading up to each replay.
474
+
441
475
  :param group: the group id or a group dict.
442
476
  :param deep: whether to get full stats for each replay and group (will be much slower).
443
477
  :param typed: whether to return a typed object (default is self.typed).
478
+ :return: an iterator of (path, replay) tuples, where path is a list of group ids.
444
479
  """
445
480
  if isinstance(group, str):
446
- group = self.get_group(group)
447
- if isinstance(group, BasicGroup):
481
+ group_id = group
482
+ elif isinstance(group, BasicGroup):
448
483
  group_id = group.id
449
484
  else:
450
485
  group_id = group["id"]
451
486
  child_groups = self.get_groups(group=group_id, typed=typed)
452
487
  for child in child_groups:
453
- for path in self.get_group_tree(child, deep=deep, typed=typed):
454
- yield group_id, *path
488
+ for path, replay in self.get_group_tree(child, deep=deep, typed=typed):
489
+ yield [group_id] + path, replay
455
490
  for replay in self.get_replays(group_id=group_id, deep=deep, typed=typed):
456
- yield group_id, replay
491
+ yield [group_id], replay
457
492
 
458
493
  def download_replay(self, replay_id: str, path: str):
459
494
  """
@@ -496,7 +531,7 @@ class BallchasingApi:
496
531
  res = self._request("/maps", "GET").json()
497
532
  return res
498
533
 
499
- def get_stats(self, replay: Union[dict, str]):
534
+ def get_stats(self, replay: dict | str):
500
535
  """
501
536
  Gets stats for players, teams and replay info.
502
537