-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Re-implemented the process of storing a user's API key. If you have used `cfbd_json_py.utls.set_cfbd_api_token()` in the past, you do not need to do anything to migrate your API key to this new process. - The following functions require a user to subscribe to the [CFBD Patreon](https://www.patreon.com/collegefootballdata): - Implemented `cfbd_json_py.games.get_cfbd_live_scoreboard()`, a function that allows a user to get live scoreboard data directly from the CFBD API, if they subscribe to the CFBD patreon. - Implemented `cfbd_json_py.games.get_cfbd_weather_info()`, a function that allows a user to get weather data directly from the CFBD API, if they subscribe to the CFBD patreon. - Partially implemented `cfbd_json_py.plays.get_cfbd_live_pbp_data()`, a function that allows someone to access live play-by-play (PBP) data, if they subscribe to the CFBD patreon. - Implemented a new file header template for all python files. - Applied some minor formatting changes to the python code. - Updated the package version to `0.2.0`, because of the new season (2024).
- Loading branch information
Showing
39 changed files
with
78,779 additions
and
47,018 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
""" | ||
# Creation Date: 08/30/2023 01:13 EDT | ||
# Last Updated Date: 04/04/2024 05:10 PM EDT | ||
# Last Updated Date: 08/13/2024 02:10 PM EDT | ||
# Author: Joseph Armstrong ([email protected]) | ||
# File Name: betting.py | ||
# Purpose: Houses functions pertaining to betting data within the CFBD API. | ||
############################################################################### | ||
""" | ||
|
||
import warnings | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
""" | ||
# Creation Date: 08/30/2023 01:13 EDT | ||
# Last Updated Date: 04/04/2024 05:10 PM EDT | ||
# Last Updated Date: 08/13/2024 02:10 PM EDT | ||
# Author: Joseph Armstrong ([email protected]) | ||
# File Name: coaches.py | ||
# Purpose: Houses functions pertaining to coaching data within the CFBD API. | ||
############################################################################### | ||
""" | ||
|
||
import logging | ||
import warnings | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
""" | ||
# Creation Date: 08/30/2023 01:13 EDT | ||
# Last Updated Date: 04/04/2024 05:10 PM EDT | ||
# Last Updated Date: 08/13/2024 02:10 PM EDT | ||
# Author: Joseph Armstrong ([email protected]) | ||
# File Name: conferences.py | ||
# Purpose: Houses functions pertaining to CFB conference data | ||
within the CFBD API. | ||
# within the CFBD API. | ||
############################################################################### | ||
""" | ||
|
||
import pandas as pd | ||
import requests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,17 @@ | ||
""" | ||
# Creation Date: 08/30/2023 01:13 EDT | ||
# Last Updated Date: 04/04/2024 05:10 PM EDT | ||
# Last Updated Date: 08/13/2024 02:10 PM EDT | ||
# Author: Joseph Armstrong ([email protected]) | ||
# File Name: draft.py | ||
# Purpose: Houses functions pertaining to NFL Draft data within the CFBD API. | ||
############################################################################### | ||
""" | ||
|
||
from datetime import datetime | ||
import logging | ||
from datetime import datetime | ||
|
||
import pandas as pd | ||
import requests | ||
|
||
# from tqdm import tqdm | ||
|
||
from cfbd_json_py.utls import get_cfbd_api_token | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
""" | ||
# Creation Date: 08/30/2023 01:13 EDT | ||
# Last Updated Date: 04/04/2024 05:10 PM EDT | ||
# Last Updated Date: 08/13/2024 02:10 PM EDT | ||
# Author: Joseph Armstrong ([email protected]) | ||
# File Name: drives.py | ||
# Purpose: Houses functions pertaining to CFB drive data within the CFBD API. | ||
############################################################################### | ||
""" | ||
|
||
from datetime import datetime | ||
import logging | ||
from datetime import datetime | ||
|
||
import pandas as pd | ||
import requests | ||
|
||
|
||
from cfbd_json_py.utls import get_cfbd_api_token | ||
|
||
|
||
|
Oops, something went wrong.