Skip to main content

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


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.4.tar.gz (5.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page