rustat-python-api 0.6.4__tar.gz → 0.6.6__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.
- {rustat-python-api-0.6.4/rustat_python_api.egg-info → rustat-python-api-0.6.6}/PKG-INFO +1 -1
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/parser.py +2 -2
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6/rustat_python_api.egg-info}/PKG-INFO +1 -1
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/requires.txt +2 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/setup.py +2 -2
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/LICENSE +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/README.md +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/pyproject.toml +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/__init__.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/config.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/kernels/__init__.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/kernels/maha.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/models_api.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/pitch_control.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/processing.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api/urls.py +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/SOURCES.txt +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/dependency_links.txt +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/top_level.txt +0 -0
- {rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/setup.cfg +0 -0
|
@@ -46,8 +46,8 @@ class RuStatParser:
|
|
|
46
46
|
else:
|
|
47
47
|
return []
|
|
48
48
|
|
|
49
|
-
def get_rpl_info(self):
|
|
50
|
-
for season_id in tqdm(range(
|
|
49
|
+
def get_rpl_info(self, start_season: int = 1, end_season: int = 37):
|
|
50
|
+
for season_id in tqdm(range(start_season, end_season)):
|
|
51
51
|
data = self.resp2data(
|
|
52
52
|
self.urls["tournament_teams"].format(
|
|
53
53
|
user=self.user,
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='rustat-python-api',
|
|
5
|
-
version='0.6.
|
|
5
|
+
version='0.6.6',
|
|
6
6
|
description='A Python wrapper for RuStat API',
|
|
7
7
|
long_description=open('README.md').read(),
|
|
8
8
|
long_description_content_type='text/markdown',
|
|
@@ -19,7 +19,7 @@ setup(
|
|
|
19
19
|
'matplotlib',
|
|
20
20
|
'matplotsoccer',
|
|
21
21
|
'torch',
|
|
22
|
-
'triton==3.0.0'
|
|
22
|
+
'triton==3.0.0; platform_system=="Linux"'
|
|
23
23
|
],
|
|
24
24
|
classifiers=[
|
|
25
25
|
'Programming Language :: Python :: 3',
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{rustat-python-api-0.6.4 → rustat-python-api-0.6.6}/rustat_python_api.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|