All Projects → cwendt94 → Espn Api

cwendt94 / Espn Api

Licence: mit
ESPN Fantasy API! (Football, Basketball)

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Espn Api

Espnff
ESPN Fantasy Football API
Stars: ✭ 210 (+35.48%)
Mutual labels:  api, football
Espn Fantasy Football Api
Connect to ESPN's fantasy football API via this JS API client for web and NodeJS. Available as an npm package.
Stars: ✭ 188 (+21.29%)
Mutual labels:  api, football
World Cup.json
Free open public domain football data for the world cups in JSON incl. Russia 2018 and more - No API key required ;-)
Stars: ✭ 152 (-1.94%)
Mutual labels:  api, football
Soccerapi
soccerapi ⚽️ , an unambitious soccer odds scraper
Stars: ✭ 52 (-66.45%)
Mutual labels:  api, football
Pymedium
Unofficial Medium Python Flask API and SDK
Stars: ✭ 153 (-1.29%)
Mutual labels:  api
Appkernel
API development made easy: a smart Python 3 API framework
Stars: ✭ 152 (-1.94%)
Mutual labels:  api
Saas Boilerplate
SaaS boilerplate built in Laravel, Bootstrap 4 and VueJs.
Stars: ✭ 152 (-1.94%)
Mutual labels:  api
Qualtrics
Download ⬇️ Qualtrics survey data directly into R!
Stars: ✭ 151 (-2.58%)
Mutual labels:  api
Middleware Acl
middleware-acl Access Control Library RBAC casbin
Stars: ✭ 155 (+0%)
Mutual labels:  api
Mande
600 bytes convenient and modern wrapper around fetch
Stars: ✭ 154 (-0.65%)
Mutual labels:  api
Laravel Twitter Streaming Api
Easily work with the Twitter Streaming API in a Laravel app
Stars: ✭ 153 (-1.29%)
Mutual labels:  api
Deeply
PHP client for the DeepL.com translation API (unofficial)
Stars: ✭ 152 (-1.94%)
Mutual labels:  api
Acunetix11 Api Documentation
Inofficial Acunetix11 API Documentation
Stars: ✭ 154 (-0.65%)
Mutual labels:  api
Corporate Bs Generator Api
Corporate Bullshit(BuzzWord) Generator API
Stars: ✭ 155 (+0%)
Mutual labels:  api
Express Mongodb Rest Api Boilerplate
A boilerplate for Node.js apps / Rest API / Authentication from scratch - express, mongodb (mongoose).
Stars: ✭ 153 (-1.29%)
Mutual labels:  api
Sangria
Scala GraphQL implementation
Stars: ✭ 1,869 (+1105.81%)
Mutual labels:  api
Payload
Headless CMS and Application Framework built with Node.js, React and MongoDB
Stars: ✭ 154 (-0.65%)
Mutual labels:  api
Vk Ruby
Ruby wrapper for vk.com API
Stars: ✭ 152 (-1.94%)
Mutual labels:  api
Captcha solver
Universal python API to captcha solving services
Stars: ✭ 152 (-1.94%)
Mutual labels:  api
React Axios
Axios Components for React with child function callback
Stars: ✭ 153 (-1.29%)
Mutual labels:  api

codecov Join the chat at https://gitter.im/ff-espn-api/community PyPI version

ESPN API

[NOTICE] Currently username and password are not working, ESPN recently changed their authentication. You can still access your private league using SWID and ESPN_S2.

This package uses ESPN's Fantasy API to extract data from any public or private league for Fantasy Football and Basketball.
Please feel free to make suggestions, bug reports, and pull request for features or fixes!

This package was inspired and based off of rbarton65/espnff.

Installing

With Git:

git clone https://github.com/cwendt94/espn-api
cd espn-api
python3 setup.py install

With pip:

pip install espn_api

Usage

For Getting Started and API details head over to the Wiki!

# Football API
from espn_api.football import League
# Basketball API
from espn_api.basketball import League
# Init
league = League(league_id=222, year=2019)

Run Tests

python3 setup.py nosetests

Discussions (new)

If you have any questions about the package, ESPN API data, or want to talk about a feature please start a discussion!

Issue Reporting

If you find a bug follow the steps below for reporting.

  1. Open a new issue with a brief description of the bug for the title. In the title also add which sport (Football or Basketball)

  2. Run the application in debug mode to view ESPN API request's and response's

    # ... import statement above
    league = League(league_id=1245, year=2019, debug=True)
    

    The application will print all requests and the response from ESPN's API in the console. I would suggest piping the console output to a text file as it will be a lot of data.

  3. Find the last log before the crash and copy it in the issue descrption with the line number of the crash or possible bug.

  4. Submit the new issue!

I will try to comment on the issue as soon as possible with my thoughts and possible fix!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].