datafc 1.0.1__tar.gz → 1.1.0__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.
- {datafc-1.0.1 → datafc-1.1.0}/PKG-INFO +4 -4
- {datafc-1.0.1 → datafc-1.1.0}/README.md +3 -3
- {datafc-1.0.1 → datafc-1.1.0}/datafc.egg-info/PKG-INFO +4 -4
- {datafc-1.0.1 → datafc-1.1.0}/setup.py +1 -1
- {datafc-1.0.1 → datafc-1.1.0}/LICENSE +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/__init__.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/__init__.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_coordinates_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_goal_networks_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_lineups_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_match_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_match_odds_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_match_stats_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_momentum_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_shots_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_standings_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/sofascore/fetch_substitutions_data.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/utils/__init__.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/utils/_config.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/utils/_save_files.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc/utils/_setup_webdriver.py +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc.egg-info/SOURCES.txt +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc.egg-info/dependency_links.txt +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc.egg-info/requires.txt +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/datafc.egg-info/top_level.txt +0 -0
- {datafc-1.0.1 → datafc-1.1.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: datafc
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: A scalable Python library for fetching, processing, and exporting structured football match data.
|
|
5
5
|
Home-page: https://github.com/urazakgul/datafc
|
|
6
6
|
Author: Uraz Akgül
|
|
@@ -14,7 +14,7 @@ Requires-Python: >=3.8
|
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
|
|
17
|
-
# datafc v1.0
|
|
17
|
+
# datafc v1.1.0
|
|
18
18
|
|
|
19
19
|
## Overview
|
|
20
20
|
|
|
@@ -53,7 +53,7 @@ pip install git+https://github.com/urazakgul/datafc.git
|
|
|
53
53
|
To install a specific version of `datafc`, use:
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
pip install datafc==1.0
|
|
56
|
+
pip install datafc==1.1.0
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
If you already have `datafc` installed and want to upgrade to the latest version, run:
|
|
@@ -648,7 +648,7 @@ Dependencies:
|
|
|
648
648
|
|
|
649
649
|
## Changelog
|
|
650
650
|
|
|
651
|
-
* v1.0
|
|
651
|
+
* v1.1.0
|
|
652
652
|
* Added 4 new columns to `match_data`
|
|
653
653
|
* Added `data_source` parameter to `save_json` and `save_excel` for including the source in file names
|
|
654
654
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# datafc v1.0
|
|
1
|
+
# datafc v1.1.0
|
|
2
2
|
|
|
3
3
|
## Overview
|
|
4
4
|
|
|
@@ -37,7 +37,7 @@ pip install git+https://github.com/urazakgul/datafc.git
|
|
|
37
37
|
To install a specific version of `datafc`, use:
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
pip install datafc==1.0
|
|
40
|
+
pip install datafc==1.1.0
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
If you already have `datafc` installed and want to upgrade to the latest version, run:
|
|
@@ -632,7 +632,7 @@ Dependencies:
|
|
|
632
632
|
|
|
633
633
|
## Changelog
|
|
634
634
|
|
|
635
|
-
* v1.0
|
|
635
|
+
* v1.1.0
|
|
636
636
|
* Added 4 new columns to `match_data`
|
|
637
637
|
* Added `data_source` parameter to `save_json` and `save_excel` for including the source in file names
|
|
638
638
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: datafc
|
|
3
|
-
Version: 1.0
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: A scalable Python library for fetching, processing, and exporting structured football match data.
|
|
5
5
|
Home-page: https://github.com/urazakgul/datafc
|
|
6
6
|
Author: Uraz Akgül
|
|
@@ -14,7 +14,7 @@ Requires-Python: >=3.8
|
|
|
14
14
|
Description-Content-Type: text/markdown
|
|
15
15
|
License-File: LICENSE
|
|
16
16
|
|
|
17
|
-
# datafc v1.0
|
|
17
|
+
# datafc v1.1.0
|
|
18
18
|
|
|
19
19
|
## Overview
|
|
20
20
|
|
|
@@ -53,7 +53,7 @@ pip install git+https://github.com/urazakgul/datafc.git
|
|
|
53
53
|
To install a specific version of `datafc`, use:
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
pip install datafc==1.0
|
|
56
|
+
pip install datafc==1.1.0
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
If you already have `datafc` installed and want to upgrade to the latest version, run:
|
|
@@ -648,7 +648,7 @@ Dependencies:
|
|
|
648
648
|
|
|
649
649
|
## Changelog
|
|
650
650
|
|
|
651
|
-
* v1.0
|
|
651
|
+
* v1.1.0
|
|
652
652
|
* Added 4 new columns to `match_data`
|
|
653
653
|
* Added `data_source` parameter to `save_json` and `save_excel` for including the source in file names
|
|
654
654
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="datafc",
|
|
8
|
-
version="1.0
|
|
8
|
+
version="1.1.0",
|
|
9
9
|
author="Uraz Akgül",
|
|
10
10
|
author_email="urazdev@gmail.com",
|
|
11
11
|
description="A scalable Python library for fetching, processing, and exporting structured football match data.",
|
|
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
|
|
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
|