Skip to main content

Python bindings to access competitive league stats.

Project description

salt

deez_stats

Python connection to Yahoo! Fantasy API implementing the yahoo_fantasy_api from spilchen

Build Status

I'll figure this out one day

Installation

Eventually, this package can be installed via pip:

python3 -m pip install deez-stats (mac)
python -m pip install deez-stats (windows)

Getting Started

First, you need to register your application on Yahoo Developer network to get Oauth credentials. Details found at Registering Your Application.

After it is registered, you can see your Client ID (Consumer Key) and Client Secret (Consumer Secret) on the apps page.

With these two elements, the need to be put into a JSON file with the following format for the yahoo_oauth package to read it in correctly.

oauth2.json file format

{
   "consumer_key": "my_very_long_and_weird_consumer_key",
   "consumer_secret": "my_not_that_long_consumer_secret"
}

Sample API Usage

Now with your Yahoo Oauth2 credentials, we will use the yahoo_oauth package to generate a token.

First, let's import the needed packages and modules:

>>> from yahoo_oauth import OAuth2
>>> import deez_stats as ds

Now, we want to generate the Yahoo Oauth2 token from the file containing our credentials:

>>> file = 'tokens/yahoo/oauth2.json'
>>> oauth2_token = OAuth2(None, None, from_file=file)

After that, we are all set to begin! Right now, there is limited functionality but we can create an object that contains all the league information. Optionally, you can pass it a season and week for a snapshot of the past. Otherwise, it will return the current league information/status.

>>> li = ds.LeagueInfo(oauth2_token, season=2021, week=None)

You can also get information about all the weekly matchups. Additionally, you can get all the historical info about the matchup.

>>> wm = li.weekly_matchups
>>> wmh = li.weekly_matchup_histories

Lastly, you can see the classes with a simple method to display the info above.

li.display_matchup_info()

Have fun and reach out if you have any cool statistical ideas!

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

deez_stats-0.2.16.tar.gz (55.3 kB view hashes)

Uploaded Source

Built Distribution

deez_stats-0.2.16-py3-none-any.whl (60.0 kB view hashes)

Uploaded Python 3

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