FPL_Data_Visualization
1.0.0
Zoe Olson, Kyle Holmberg und Ryan Collier haben sich zum Ziel gesetzt, etwas über Datenerfassung, -analyse und -visualisierung zu lernen.
Wir haben die englische Premier League als Datenquelle ausgewählt, wobei der Schwerpunkt auf der Verbesserung der Ergebnisse der Fantasy Premier League liegt.
https://www.cs.uoregon.edu/Classes/16F/cis451/final.html
FPL-Bootstrap-API-Endpunkt
FPL-Player-API-Endpunkte (1 bis eine variable Zahl um 656)
Ähnliches Projekt
Asynchrone HTTP-Anfragen in Python 3.5+
1 Million Anfragen mit python-aiohttp stellen
Bitte installieren Sie Virtual Environments.
Webscraper
$ pip3 install -r requirements.txt
$ python3 fpl_csv_converter.py
Flaschen-App
$ brew install mysql
$ mysql -u <username> -p <password> <database name> < create_fpl_models.sql
$ cd app
$ pip3 install -r requirements.txt
$ python3 entry.wsgi.py
Um unser Jupyter-Notizbuch anzuzeigen, klicken Sie HIER
├── LICENSE
├── README.md
├── app
│ ├── entry.wsgi.py
│ ├── requirements.txt
│ ├── static
│ └── templates
├── create_fpl_model.sql
├── docs
│ ├── CIS407_Retrospective.pdf
│ ├── CIS451_Final_Report.pdf
│ ├── Retrospective.pdf
│ └── create_fpl_model.sql
├── jupyter_notebook
│ ├── Jupyter_viz.ipynb
│ ├── README.md
│ └── jupyter_viz_files
├── mysql_dump.sql
└── webscraper
├── CurrentSeasonStats.csv
├── History.csv
├── Managers.csv
├── Player.csv
├── PlayerResultStats.csv
├── Result.csv
├── Teams.csv
├── TotalPastStats.csv
├── fpl_csv_converter.py
└── requirements.txt
MIT © Kyle Holmberg