FPL_Data_Visualization
1.0.0
Zoe Olson, Kyle Holmberg e Ryan Collier estabeleceram o objetivo de aprender sobre coleta, análise e visualização de dados.
Escolhemos a Premier League inglesa como nossa fonte de dados, com ênfase na melhoria das pontuações da Fantasy Premier League.
https://www.cs.uoregon.edu/Classes/16F/cis451/final.html
Ponto final da API de inicialização FPL
Endpoints da API do FPL Player (1 para um número variável em torno de 656)
Projeto semelhante
Solicitações HTTP assíncronas em Python 3.5+
Fazendo 1 milhão de solicitações com python-aiohttp
Instale ambientes virtuais.
Raspador da Web
$ pip3 install -r requirements.txt
$ python3 fpl_csv_converter.py
Aplicativo Flask
$ 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
Para visualizar nosso Jupyter Notebook, clique AQUI
├── 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