yfpy


Nameyfpy JSON
Version 15.0.3 PyPI version JSON
download
home_pagehttps://github.com/uberfastman/yfpy
SummaryPython API wrapper for the Yahoo Fantasy Sports public API.
upload_time2023-11-07 04:44:26
maintainer
docs_urlNone
authorWren J. R.
requires_python>=3.8
license
keywords yahoo fantasy sports api wrapper nfl football nhl hockey mlb baseball nba basketball
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [<img src="https://github.com/uberfastman/yfpy/raw/main/docs/_static/yfpy-logo.svg" width="400"/>](https://github.com/uberfastman/yfpy)

## YFPY - Yahoo Fantasy Sports API Wrapper
Python API wrapper for the Yahoo Fantasy Sports public API

*Author: Wren J. R. (uberfastman)*

[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/uberfastman/yfpy?color=yellowgreen&label=latest%20release&sort=semver)](https://github.com/uberfastman/yfpy/releases/latest)
[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/uberfastman/yfpy?color=yellowgreen&label=latest%20version&sort=semver)](https://github.com/uberfastman/yfpy/tags)
[![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/uberfastman/yfpy/python-package.yml?color=brightgreen&label=build)](https://github.com/uberfastman/yfpy/actions/workflows/python-package.yml)

[![PyPI](https://img.shields.io/pypi/v/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)
[![PyPI](https://img.shields.io/pypi/dm/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)
[![PyPI](https://img.shields.io/pypi/pyversions/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)
[![PyPI](https://img.shields.io/pypi/l/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)

---

<sub>***Do you like the YFPY API wrapper? Star the repository on GitHub and please consider helping support its ongoing development:***</sub>

[<img src="https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-paypal.png" width="75"/>](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=VZZCNLRHH9BQS) [<img src="https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-bitcoin.png" width="75"/>](https://share.trustwallet.com/ZoAkTpY1I9) [<img src="https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-ethereum.png" width="75"/>](https://share.trustwallet.com/MF8YBO01I9)

|                                                                <sub><sup>Cryptocurrency</sup></sub> |                                                      <sub><sup>Address</sup></sub>                                                       |
|----------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------:|
|                                                                 <sub><sup>Bitcoin (BTC)</sup></sub> |                                    <sub><sup>`bc1qataspvklhewtswm357m0677q4raag5new2xt3e`</sup></sub>                                    | 
|                                                                <sub><sup>Ethereum (ETH)</sup></sub> |                                    <sub><sup>`0x5eAa522e66a90577D49e9E72f253EC952CDB4059`</sup></sub>                                    |

<sub><sup></sup></sub>

---

**[READ THE DOCS HERE!](https://yfpy.uberfastman.com)**
<br/>
<sup>Detailed documentation on YFPY can be found at [https://yfpy.uberfastman.com](https://yfpy.uberfastman.com).</sup>

### Table of Contents
* [About](#about)
* [Installation](#installation)
* [Setup](#setup)
* [Usage](#usage)
* [Testing](#testing)
* [Dependencies](#dependencies)
* [Troubleshooting](#troubleshooting)

---

<a name="about"></a>
### About

YFPY is a comprehensive wrapper around the Yahoo Fantasy Sports API. It allows for easy retrieval and parsing of almost any data you might wish to extract and use from any Yahoo fantasy league to which your Yahoo account has access (or for public leagues). The primary focus of this wrapper is on fantasy football (NFL), but it also supports usage with fantasy hockey (NHL), fantasy baseball (MLB), and fantasy basketball (NBA). 

---

<a name="installation"></a>
### Installation

#### Pip

* If you wish to use YFPY within another project, from within your project directory, run
    ```shell
    pip install yfpy
    ```
    
    or add `yfpy` to your project `requirements.txt`.

#### Manual

* If you wish to download and use YFPY locally, clone the git repository:
  ```shell
  git clone git@github.com:uberfastman/yfpy.git
  ```

---

<a name="setup"></a>
### Setup

#### Yahoo Developer Network App

In order to use YFPY with private fantasy leagues, you must set up an app on your Yahoo account to allow access. Follow the step-by-step guide below for instructions on how to do so, or see [Getting Started](https://developer.yahoo.com/oauth2/guide/openid_connect/getting_started.html) in the Yahoo Developer Network docs for more details.

**Note:** *If you are only planning on using YFPY to pull "read only" data from public leagues, you do not need to do this.*

* Log in to a Yahoo account with access to whatever fantasy leagues from which you wish to retrieve data.
* Go to [https://developer.yahoo.com/apps/create/](https://developer.yahoo.com/apps/create/) and create an app (you must be logged into your Yahoo account as stated above). For the app, select the following options:
    * `Application Name` (**Required**): `yfpy` (you can name your app whatever you want, but this is just an example).
    * `Application Type` (**Required**): select the `Installed Application` radio button.
    * `Description` (*Optional*): you *may* write a short description of what the app does.
    * `Home Page URL` (*Optional*): if you have a web address related to your app you *may* add it here.
    * `Redirect URI(s)` (**Required**): this field must contain a valid redirect address, so you can use `https://localhost:8080`
    * `API Permissions` (**Required**): check the `Fantasy Sports` checkbox. You can leave the `Read` option selected (appears in an accordion expansion underneath the `Fantasy Sports` checkbox once you select it).
    * Click the `Create App` button.
    * Once the app is created, it should redirect you to a page for your app, which will show both a `Client ID` and a `Client Secret`.
    * Make a copy of [`auth/private.template.json`](https://github.com/uberfastman/yfpy/blob/main/auth/private.template.json), rename it to just `private.json`, and copy the `Client ID` and `Client Secret` values to their respective fields (make sure the strings are wrapped regular quotes (`""`), NOT formatted quotes (`“”`)). The path to this file will be needed to point YFPY to your credentials.
    * Now you should be ready to initialize the OAuth2 connection between YFPY your Yahoo account.

---

<a name="usage"></a>
### Usage

#### Authentication

* Follow the instructions in the [Installation](#installation) and [Setup](#setup) sections.
* The ***first*** time you use YFPY, a browser window will open up asking you to allow your app to access your Yahoo fantasy sports data. You ***MUST*** hit allow, and then copy the verification code that pops up into the command line prompt where it will now be asking for verification, hit enter, and the OAuth2 three-legged handshake should be complete and your data should have been successfully retrieved.
* YFPY should have now generated a `token.json` for you in the same directory where you stored your `private.json` credentials, and for all subsequent runs of your app, you should be able to keep retrieving Yahoo fantasy sports data using YFPY without re-verifying, since the generated refresh token should now just renew whenever you use the same `token.json` file to authenticate your app.

#### Querying the Yahoo Fantasy Sports API

* See the documentation on the  [`yfpy.query.YahooFantasySportsQuery`](https://yfpy.uberfastman.com/_autosummary/yfpy.query.YahooFantasySportsQuery.html#yfpy.query.YahooFantasySportsQuery) class for example usage of all available queries.
* See [`quickstart/quickstart.py`](https://github.com/uberfastman/yfpy/blob/main/quickstart/quickstart.py) for example usage output.
  * Uncomment/comment out whichever configuration values in their respective functions with which you wish to experiment.
  * Uncomment/comment out whichever query lines in the `RUN QUERIES` section you wish to run.
  * Uncomment/comment out whichever query lines in the `CHECK FOR MISSING DATA FIELDS` section you wish to check for any new/missing data fields returned by the Yahoo Sports Fantasy Football API.

#### Docker

YFPY can be used within Docker for a more seamless, platform-agnostic experience.

* Run the Docker container (pulls the YFPY Docker image from GitHub Package Registry):
    ```shell
    docker compose up
    ``` 
* You can then run commands in the Docker container in two different ways:
  * Connect to the running container and run commands from within it:
    ```shell
    docker exec -it yfpy-package-1 bash
    ```
    Then:
    ```shell
    python quickstart/quickstart.py
    ```
  * Send commands to the running container from your host machine:
    ```shell
    docker exec -i yfpy-package-1 bash -c "python quickstart/quickstart.py"
    ```

##### Docker Development (optional)

* Run the Docker container for local development (mount all local code into container):
    ```shell
    docker compose -f compose.yaml -f compose.dev.yaml up
    ```
  
##### Docker Image Deployment

See [DEPLOYMENT.md](https://github.com/uberfastman/yfpy/blob/main/DEPLOYMENT.md) for Docker image deployment.

---

<a name="testing"></a>
### Testing

YFPY has a collection of fully functional code snippets that can be run using [pytest](https://docs.pytest.org/en/6.2.x/). These snippets demonstrate how to use YFPY to retrieve your Yahoo Fantasy Sports data.

#### Unit

* See the [`test/unit`](https://github.com/uberfastman/yfpy/blob/main/test/unit/) directory for example code snippets using pytest.

#### Integration

* See the [`test/integration`](https://github.com/uberfastman/yfpy/blob/main/test/integration/) directory for example code snippets using pytest.
* Before running any integration tests, make a copy of [`auth/.env.template`](https://github.com/uberfastman/yfpy/blob/main/auth/.env.template) in the [`auth/`](https://github.com/uberfastman/yfpy/blob/main/auth/) directory and rename it to `.env`.
* Copy your Yahoo `Client ID` and `Client Secret` into the environment variables in `.env` so that pytest can use them when hitting the Yahoo Fantasy Sports API.
* If this is the first time running pytest with your Yahoo API credentials, you ***MUST*** allow interactive prompts within pytest by using the `-s` flag.
* The fixture values in [`test/integration/conftest.py`](https://github.com/uberfastman/yfpy/blob/main/test/integration/conftest.py) are defined in [`quickstart/quickstart.py`](https://github.com/uberfastman/yfpy/blob/main/quickstart/quickstart.py), and can be changed for testing by uncommenting/commenting out the values inside each respective function.

#### Running

* You can invoke all pytest tests (both integration test and unit tests) by running the below from the root directory:
  * `pytest -v -s`
* If you want to run only the unit tests, you can run:
  * `pytest -v -s -m unit`
* If you want to run only the integration tests, you can run:
  * `pytest -v -s -m integration`

---

<a name="dependencies"></a>
### Dependencies

#### Platform

YFPY has only been tested extensively on macOS, but is written to be platform-agnostic, and seems to work without issue on Windows and Linux. 

#### Python

YFPY requires Python 3.8 or later, and has been tested through Python 3.11.

#### Development

Direct project dependencies can be viewed in `requirements.txt`, and additional development and build dependencies (*not* including transitive dependencies) can be viewed in `requirements-dev.txt`.

---

<a name="troubleshooting"></a>
### Troubleshooting

#### Yahoo Fantasy Sports API

Occasionally when you use the Yahoo Fantasy Sports API, there are hangups on the other end that can cause data not to transmit, and you might encounter an error similar to this:
```
Traceback (most recent call last):
  File "yfpy-app.py", line 114, in <module>
    var = app.run()
  File "/Users/your_username/PATH/T0/LOCAL/PROJECT/yfpy-app.py", line 429, in run
    for team in team_standings:
IndexError: list index out of range
```

Typically, when the above error (or a similar error) occurs, it simply means that one of the Yahoo Fantasy Sports API calls failed and so no data was retrieved. This can be fixed by simply re-running data query.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/uberfastman/yfpy",
    "name": "yfpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "yahoo fantasy sports api wrapper nfl football nhl hockey mlb baseball nba basketball",
    "author": "Wren J. R.",
    "author_email": "uberfastman@uberfastman.dev",
    "download_url": "https://files.pythonhosted.org/packages/29/9a/2d6ff10f12919ac8099352405e9e2c8f4edc6550b113a2c4b13b83a8f469/yfpy-15.0.3.tar.gz",
    "platform": null,
    "description": "[<img src=\"https://github.com/uberfastman/yfpy/raw/main/docs/_static/yfpy-logo.svg\" width=\"400\"/>](https://github.com/uberfastman/yfpy)\n\n## YFPY - Yahoo Fantasy Sports API Wrapper\nPython API wrapper for the Yahoo Fantasy Sports public API\n\n*Author: Wren J. R. (uberfastman)*\n\n[![GitHub release (latest SemVer)](https://img.shields.io/github/v/release/uberfastman/yfpy?color=yellowgreen&label=latest%20release&sort=semver)](https://github.com/uberfastman/yfpy/releases/latest)\n[![GitHub tag (latest SemVer)](https://img.shields.io/github/v/tag/uberfastman/yfpy?color=yellowgreen&label=latest%20version&sort=semver)](https://github.com/uberfastman/yfpy/tags)\n[![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/uberfastman/yfpy/python-package.yml?color=brightgreen&label=build)](https://github.com/uberfastman/yfpy/actions/workflows/python-package.yml)\n\n[![PyPI](https://img.shields.io/pypi/v/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)\n[![PyPI](https://img.shields.io/pypi/dm/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)\n[![PyPI](https://img.shields.io/pypi/pyversions/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)\n[![PyPI](https://img.shields.io/pypi/l/yfpy.svg?style=flat)](https://pypi.python.org/pypi/yfpy)\n\n---\n\n<sub>***Do you like the YFPY API wrapper? Star the repository on GitHub and please consider helping support its ongoing development:***</sub>\n\n[<img src=\"https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-paypal.png\" width=\"75\"/>](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=VZZCNLRHH9BQS) [<img src=\"https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-bitcoin.png\" width=\"75\"/>](https://share.trustwallet.com/ZoAkTpY1I9) [<img src=\"https://github.com/uberfastman/yfpy/raw/main/resources/images/donate-ethereum.png\" width=\"75\"/>](https://share.trustwallet.com/MF8YBO01I9)\n\n|                                                                <sub><sup>Cryptocurrency</sup></sub> |                                                      <sub><sup>Address</sup></sub>                                                       |\n|----------------------------------------------------------------------------------------------------:|:----------------------------------------------------------------------------------------------------------------------------------------:|\n|                                                                 <sub><sup>Bitcoin (BTC)</sup></sub> |                                    <sub><sup>`bc1qataspvklhewtswm357m0677q4raag5new2xt3e`</sup></sub>                                    | \n|                                                                <sub><sup>Ethereum (ETH)</sup></sub> |                                    <sub><sup>`0x5eAa522e66a90577D49e9E72f253EC952CDB4059`</sup></sub>                                    |\n\n<sub><sup></sup></sub>\n\n---\n\n**[READ THE DOCS HERE!](https://yfpy.uberfastman.com)**\n<br/>\n<sup>Detailed documentation on YFPY can be found at [https://yfpy.uberfastman.com](https://yfpy.uberfastman.com).</sup>\n\n### Table of Contents\n* [About](#about)\n* [Installation](#installation)\n* [Setup](#setup)\n* [Usage](#usage)\n* [Testing](#testing)\n* [Dependencies](#dependencies)\n* [Troubleshooting](#troubleshooting)\n\n---\n\n<a name=\"about\"></a>\n### About\n\nYFPY is a comprehensive wrapper around the Yahoo Fantasy Sports API. It allows for easy retrieval and parsing of almost any data you might wish to extract and use from any Yahoo fantasy league to which your Yahoo account has access (or for public leagues). The primary focus of this wrapper is on fantasy football (NFL), but it also supports usage with fantasy hockey (NHL), fantasy baseball (MLB), and fantasy basketball (NBA). \n\n---\n\n<a name=\"installation\"></a>\n### Installation\n\n#### Pip\n\n* If you wish to use YFPY within another project, from within your project directory, run\n    ```shell\n    pip install yfpy\n    ```\n    \n    or add `yfpy` to your project `requirements.txt`.\n\n#### Manual\n\n* If you wish to download and use YFPY locally, clone the git repository:\n  ```shell\n  git clone git@github.com:uberfastman/yfpy.git\n  ```\n\n---\n\n<a name=\"setup\"></a>\n### Setup\n\n#### Yahoo Developer Network App\n\nIn order to use YFPY with private fantasy leagues, you must set up an app on your Yahoo account to allow access. Follow the step-by-step guide below for instructions on how to do so, or see [Getting Started](https://developer.yahoo.com/oauth2/guide/openid_connect/getting_started.html) in the Yahoo Developer Network docs for more details.\n\n**Note:** *If you are only planning on using YFPY to pull \"read only\" data from public leagues, you do not need to do this.*\n\n* Log in to a Yahoo account with access to whatever fantasy leagues from which you wish to retrieve data.\n* Go to [https://developer.yahoo.com/apps/create/](https://developer.yahoo.com/apps/create/) and create an app (you must be logged into your Yahoo account as stated above). For the app, select the following options:\n    * `Application Name` (**Required**): `yfpy` (you can name your app whatever you want, but this is just an example).\n    * `Application Type` (**Required**): select the `Installed Application` radio button.\n    * `Description` (*Optional*): you *may* write a short description of what the app does.\n    * `Home Page URL` (*Optional*): if you have a web address related to your app you *may* add it here.\n    * `Redirect URI(s)` (**Required**): this field must contain a valid redirect address, so you can use `https://localhost:8080`\n    * `API Permissions` (**Required**): check the `Fantasy Sports` checkbox. You can leave the `Read` option selected (appears in an accordion expansion underneath the `Fantasy Sports` checkbox once you select it).\n    * Click the `Create App` button.\n    * Once the app is created, it should redirect you to a page for your app, which will show both a `Client ID` and a `Client Secret`.\n    * Make a copy of [`auth/private.template.json`](https://github.com/uberfastman/yfpy/blob/main/auth/private.template.json), rename it to just `private.json`, and copy the `Client ID` and `Client Secret` values to their respective fields (make sure the strings are wrapped regular quotes (`\"\"`), NOT formatted quotes (`\u201c\u201d`)). The path to this file will be needed to point YFPY to your credentials.\n    * Now you should be ready to initialize the OAuth2 connection between YFPY your Yahoo account.\n\n---\n\n<a name=\"usage\"></a>\n### Usage\n\n#### Authentication\n\n* Follow the instructions in the [Installation](#installation) and [Setup](#setup) sections.\n* The ***first*** time you use YFPY, a browser window will open up asking you to allow your app to access your Yahoo fantasy sports data. You ***MUST*** hit allow, and then copy the verification code that pops up into the command line prompt where it will now be asking for verification, hit enter, and the OAuth2 three-legged handshake should be complete and your data should have been successfully retrieved.\n* YFPY should have now generated a `token.json` for you in the same directory where you stored your `private.json` credentials, and for all subsequent runs of your app, you should be able to keep retrieving Yahoo fantasy sports data using YFPY without re-verifying, since the generated refresh token should now just renew whenever you use the same `token.json` file to authenticate your app.\n\n#### Querying the Yahoo Fantasy Sports API\n\n* See the documentation on the  [`yfpy.query.YahooFantasySportsQuery`](https://yfpy.uberfastman.com/_autosummary/yfpy.query.YahooFantasySportsQuery.html#yfpy.query.YahooFantasySportsQuery) class for example usage of all available queries.\n* See [`quickstart/quickstart.py`](https://github.com/uberfastman/yfpy/blob/main/quickstart/quickstart.py) for example usage output.\n  * Uncomment/comment out whichever configuration values in their respective functions with which you wish to experiment.\n  * Uncomment/comment out whichever query lines in the `RUN QUERIES` section you wish to run.\n  * Uncomment/comment out whichever query lines in the `CHECK FOR MISSING DATA FIELDS` section you wish to check for any new/missing data fields returned by the Yahoo Sports Fantasy Football API.\n\n#### Docker\n\nYFPY can be used within Docker for a more seamless, platform-agnostic experience.\n\n* Run the Docker container (pulls the YFPY Docker image from GitHub Package Registry):\n    ```shell\n    docker compose up\n    ``` \n* You can then run commands in the Docker container in two different ways:\n  * Connect to the running container and run commands from within it:\n    ```shell\n    docker exec -it yfpy-package-1 bash\n    ```\n    Then:\n    ```shell\n    python quickstart/quickstart.py\n    ```\n  * Send commands to the running container from your host machine:\n    ```shell\n    docker exec -i yfpy-package-1 bash -c \"python quickstart/quickstart.py\"\n    ```\n\n##### Docker Development (optional)\n\n* Run the Docker container for local development (mount all local code into container):\n    ```shell\n    docker compose -f compose.yaml -f compose.dev.yaml up\n    ```\n  \n##### Docker Image Deployment\n\nSee [DEPLOYMENT.md](https://github.com/uberfastman/yfpy/blob/main/DEPLOYMENT.md) for Docker image deployment.\n\n---\n\n<a name=\"testing\"></a>\n### Testing\n\nYFPY has a collection of fully functional code snippets that can be run using [pytest](https://docs.pytest.org/en/6.2.x/). These snippets demonstrate how to use YFPY to retrieve your Yahoo Fantasy Sports data.\n\n#### Unit\n\n* See the [`test/unit`](https://github.com/uberfastman/yfpy/blob/main/test/unit/) directory for example code snippets using pytest.\n\n#### Integration\n\n* See the [`test/integration`](https://github.com/uberfastman/yfpy/blob/main/test/integration/) directory for example code snippets using pytest.\n* Before running any integration tests, make a copy of [`auth/.env.template`](https://github.com/uberfastman/yfpy/blob/main/auth/.env.template) in the [`auth/`](https://github.com/uberfastman/yfpy/blob/main/auth/) directory and rename it to `.env`.\n* Copy your Yahoo `Client ID` and `Client Secret` into the environment variables in `.env` so that pytest can use them when hitting the Yahoo Fantasy Sports API.\n* If this is the first time running pytest with your Yahoo API credentials, you ***MUST*** allow interactive prompts within pytest by using the `-s` flag.\n* The fixture values in [`test/integration/conftest.py`](https://github.com/uberfastman/yfpy/blob/main/test/integration/conftest.py) are defined in [`quickstart/quickstart.py`](https://github.com/uberfastman/yfpy/blob/main/quickstart/quickstart.py), and can be changed for testing by uncommenting/commenting out the values inside each respective function.\n\n#### Running\n\n* You can invoke all pytest tests (both integration test and unit tests) by running the below from the root directory:\n  * `pytest -v -s`\n* If you want to run only the unit tests, you can run:\n  * `pytest -v -s -m unit`\n* If you want to run only the integration tests, you can run:\n  * `pytest -v -s -m integration`\n\n---\n\n<a name=\"dependencies\"></a>\n### Dependencies\n\n#### Platform\n\nYFPY has only been tested extensively on macOS, but is written to be platform-agnostic, and seems to work without issue on Windows and Linux. \n\n#### Python\n\nYFPY requires Python 3.8 or later, and has been tested through Python 3.11.\n\n#### Development\n\nDirect project dependencies can be viewed in `requirements.txt`, and additional development and build dependencies (*not* including transitive dependencies) can be viewed in `requirements-dev.txt`.\n\n---\n\n<a name=\"troubleshooting\"></a>\n### Troubleshooting\n\n#### Yahoo Fantasy Sports API\n\nOccasionally when you use the Yahoo Fantasy Sports API, there are hangups on the other end that can cause data not to transmit, and you might encounter an error similar to this:\n```\nTraceback (most recent call last):\n  File \"yfpy-app.py\", line 114, in <module>\n    var = app.run()\n  File \"/Users/your_username/PATH/T0/LOCAL/PROJECT/yfpy-app.py\", line 429, in run\n    for team in team_standings:\nIndexError: list index out of range\n```\n\nTypically, when the above error (or a similar error) occurs, it simply means that one of the Yahoo Fantasy Sports API calls failed and so no data was retrieved. This can be fixed by simply re-running data query.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python API wrapper for the Yahoo Fantasy Sports public API.",
    "version": "15.0.3",
    "project_urls": {
        "Download": "https://github.com/uberfastman/yfpy/archive/v15.0.3.tar.gz",
        "Homepage": "https://github.com/uberfastman/yfpy"
    },
    "split_keywords": [
        "yahoo",
        "fantasy",
        "sports",
        "api",
        "wrapper",
        "nfl",
        "football",
        "nhl",
        "hockey",
        "mlb",
        "baseball",
        "nba",
        "basketball"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c32b9ffb126d361fbbb2f4335b6a20869b58e001b49f7fbd0830c5d68d9f964",
                "md5": "58c77a0407f67c55af6a44761b18f137",
                "sha256": "582b5a098387e5b7a35582c4baedcd5cb45dc67727aec8b6905a5d5285062f0f"
            },
            "downloads": -1,
            "filename": "yfpy-15.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "58c77a0407f67c55af6a44761b18f137",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 65735,
            "upload_time": "2023-11-07T04:44:25",
            "upload_time_iso_8601": "2023-11-07T04:44:25.232527Z",
            "url": "https://files.pythonhosted.org/packages/5c/32/b9ffb126d361fbbb2f4335b6a20869b58e001b49f7fbd0830c5d68d9f964/yfpy-15.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "299a2d6ff10f12919ac8099352405e9e2c8f4edc6550b113a2c4b13b83a8f469",
                "md5": "37dcaa3b58592349cadfdf624ac9b807",
                "sha256": "47af5fa449bf536e6895283446778e1b0121cf09fd666464180710c6dd1c606d"
            },
            "downloads": -1,
            "filename": "yfpy-15.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "37dcaa3b58592349cadfdf624ac9b807",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 67099,
            "upload_time": "2023-11-07T04:44:26",
            "upload_time_iso_8601": "2023-11-07T04:44:26.750412Z",
            "url": "https://files.pythonhosted.org/packages/29/9a/2d6ff10f12919ac8099352405e9e2c8f4edc6550b113a2c4b13b83a8f469/yfpy-15.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-07 04:44:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "uberfastman",
    "github_project": "yfpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "yfpy"
}
        
Elapsed time: 0.13752s