Getting data out of FPL API made easier
Project description
FPLDATA
Get processed and cleaner data from the FPL API!
Installation
Run the following code to install:
pip install fpldata
Usage
Get the names of team in EPL. Returns a list
from fpldata import TeamData
t1 = TeamData()
print(t1.list_team_name())
Get the EPL table. Returns a pandas DataFrame
from fpldata import TeamData
t1 = TeamData()
print(t1.get_table())
Compares two teams based on their Strengths scores. Input should be the short name of the team. Returns a pandas DataFrame
from fpldata import TeamData
t1 = TeamData()
data = t1.team_compare('ARS','LIV')
print(data)
Get player list with their id. Returns dictionary of players with ids as key and name as value
from fpldata import PlayerData
p1 = PlayerData()
print(p1.player_list())
Search player by name. Returns dictionary of player with ids as key and name as value
from fpldata import PlayerData
p1 = PlayerData()
data = p1.search_player('David')
print(data)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
fpldata-0.0.3.tar.gz
(5.9 kB
view details)
File details
Details for the file fpldata-0.0.3.tar.gz
.
File metadata
- Download URL: fpldata-0.0.3.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0296e1d3e07ab36e86601946ce86fbd01510bee8e2e4f15b89e7158f5d215dc |
|
MD5 | f22d08978ff99a4fe54109f8b2adb5b1 |
|
BLAKE2b-256 | ab947674074c6dc7e13e65d5eb4913a0fa77f1ec12739ebfb0966ba461f14ca3 |