fpl


Namefpl JSON
Version 0.6.35 PyPI version JSON
download
home_pagehttps://github.com/amosbastian/fpl
SummaryA Python wrapper for the Fantasy Premier League API
upload_time2023-08-14 10:10:38
maintainer
docs_urlNone
authoramosbastian
requires_python
licenseMIT
keywords fpl fantasy premier league
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <p align="center">
  <a href="https://fpl.readthedocs.io/en/latest/">
    <img src="https://i.imgur.com/ao1t2qN.png">
  </a>
</p>

<p align="center">
    A Python wrapper around the Fantasy Premier League API
    <br>
    <br>
    <a href="https://travis-ci.org/amosbastian/fpl" alt="Build">
        <img src="https://travis-ci.org/amosbastian/fpl.svg?branch=master"/></a>
    <a href="https://fpl.readthedocs.io/en/latest/" alt="Documentation">
        <img src="https://readthedocs.org/projects/fpl/badge/?version=latest" /></a>
    <a href="https://pypi.org/project/fpl/" alt="Version">
        <img src="https://badge.fury.io/py/fpl.svg"/></a>
    <a href="https://pypi.org/project/fpl/" alt="Python version">
        <img src="https://img.shields.io/badge/Python-3.6%2B-blue.svg"/></a>
    <a href="https://codecov.io/gh/amosbastian/fpl">
        <img src="https://codecov.io/gh/amosbastian/fpl/branch/master/graph/badge.svg"/></a>
</p>

Join the [Discord server](https://discord.gg/cjY37fv) or submit [an issue](https://github.com/amosbastian/fpl/issues) for help and / or suggestions!

## Installing fpl

The recommended way to install fpl is via `pip`.

    pip install fpl

To install it directly from GitHub you can do the following:

    git clone git://github.com/amosbastian/fpl.git

You can also install a [.tar file](https://github.com/amosbastian/fpl/tarball/master)
or [.zip file](https://github.com/amosbastian/fpl/tarball/master)

    curl -OL https://github.com/amosbastian/fpl/tarball/master
    curl -OL https://github.com/amosbastian/fpl/zipball/master # Windows

Once it has been downloaded you can easily install it using `pip`:

    cd fpl
    pip install .

## Contributing

1. Fork the repository on GitHub.
2. Create a `credentials.cfg` file with your FPL login and password (see [example](docs/_static/example-credentials-file.cfg)).
3. Run the tests with `pytest tests/` to confirm they all pass on your system.
   If the tests fail, then try and find out why this is happening. If you aren't
   able to do this yourself, then don't hesitate to either create an issue on
   GitHub, contact me on Discord or send an email to [amosbastian@gmail.com](mailto:amosbastian@gmail.com>).
3. Either create your feature and then write tests for it, or do this the other
   way around.
4. Run all tests again with with `pytest tests/` to confirm that everything
   still passes, including your newly added test(s).
5. Create a pull request for the main repository's `master` branch.

For more information on how to contribute to **fpl** see [the contributing guide](https://fpl.readthedocs.io/en/latest/contributing/contributing.html).

## Documentation

Documentation and examples for **fpl** can be found at http://fpl.readthedocs.io/en/latest/.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/amosbastian/fpl",
    "name": "fpl",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "fpl fantasy premier league",
    "author": "amosbastian",
    "author_email": "amosbastian@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/60/68/0431497f936a9f7b6767e4a95214e2e19fa2e80518af6cd7b6dc0883bc8c/fpl-0.6.35.tar.gz",
    "platform": null,
    "description": "<p align=\"center\">\n  <a href=\"https://fpl.readthedocs.io/en/latest/\">\n    <img src=\"https://i.imgur.com/ao1t2qN.png\">\n  </a>\n</p>\n\n<p align=\"center\">\n    A Python wrapper around the Fantasy Premier League API\n    <br>\n    <br>\n    <a href=\"https://travis-ci.org/amosbastian/fpl\" alt=\"Build\">\n        <img src=\"https://travis-ci.org/amosbastian/fpl.svg?branch=master\"/></a>\n    <a href=\"https://fpl.readthedocs.io/en/latest/\" alt=\"Documentation\">\n        <img src=\"https://readthedocs.org/projects/fpl/badge/?version=latest\" /></a>\n    <a href=\"https://pypi.org/project/fpl/\" alt=\"Version\">\n        <img src=\"https://badge.fury.io/py/fpl.svg\"/></a>\n    <a href=\"https://pypi.org/project/fpl/\" alt=\"Python version\">\n        <img src=\"https://img.shields.io/badge/Python-3.6%2B-blue.svg\"/></a>\n    <a href=\"https://codecov.io/gh/amosbastian/fpl\">\n        <img src=\"https://codecov.io/gh/amosbastian/fpl/branch/master/graph/badge.svg\"/></a>\n</p>\n\nJoin the [Discord server](https://discord.gg/cjY37fv) or submit [an issue](https://github.com/amosbastian/fpl/issues) for help and / or suggestions!\n\n## Installing fpl\n\nThe recommended way to install fpl is via `pip`.\n\n    pip install fpl\n\nTo install it directly from GitHub you can do the following:\n\n    git clone git://github.com/amosbastian/fpl.git\n\nYou can also install a [.tar file](https://github.com/amosbastian/fpl/tarball/master)\nor [.zip file](https://github.com/amosbastian/fpl/tarball/master)\n\n    curl -OL https://github.com/amosbastian/fpl/tarball/master\n    curl -OL https://github.com/amosbastian/fpl/zipball/master # Windows\n\nOnce it has been downloaded you can easily install it using `pip`:\n\n    cd fpl\n    pip install .\n\n## Contributing\n\n1. Fork the repository on GitHub.\n2. Create a `credentials.cfg` file with your FPL login and password (see [example](docs/_static/example-credentials-file.cfg)).\n3. Run the tests with `pytest tests/` to confirm they all pass on your system.\n   If the tests fail, then try and find out why this is happening. If you aren't\n   able to do this yourself, then don't hesitate to either create an issue on\n   GitHub, contact me on Discord or send an email to [amosbastian@gmail.com](mailto:amosbastian@gmail.com>).\n3. Either create your feature and then write tests for it, or do this the other\n   way around.\n4. Run all tests again with with `pytest tests/` to confirm that everything\n   still passes, including your newly added test(s).\n5. Create a pull request for the main repository's `master` branch.\n\nFor more information on how to contribute to **fpl** see [the contributing guide](https://fpl.readthedocs.io/en/latest/contributing/contributing.html).\n\n## Documentation\n\nDocumentation and examples for **fpl** can be found at http://fpl.readthedocs.io/en/latest/.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A Python wrapper for the Fantasy Premier League API",
    "version": "0.6.35",
    "project_urls": {
        "Documentation": "http://fpl.readthedocs.io/en/latest/",
        "Homepage": "https://github.com/amosbastian/fpl",
        "Source": "https://github.com/amosbastian/fpl"
    },
    "split_keywords": [
        "fpl",
        "fantasy",
        "premier",
        "league"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d6488c2bfbe54c9020255e030b513fab6714435aacc0a2f0d2e49c3febd54a1",
                "md5": "3cc5f1096738276e040bd7cf39780ea5",
                "sha256": "190b558f57f46883d99549ea6e5d10a62e4ddf4a72ab1694a557f52e565d59e2"
            },
            "downloads": -1,
            "filename": "fpl-0.6.35-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3cc5f1096738276e040bd7cf39780ea5",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 38837,
            "upload_time": "2023-08-14T10:10:36",
            "upload_time_iso_8601": "2023-08-14T10:10:36.375533Z",
            "url": "https://files.pythonhosted.org/packages/0d/64/88c2bfbe54c9020255e030b513fab6714435aacc0a2f0d2e49c3febd54a1/fpl-0.6.35-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "60680431497f936a9f7b6767e4a95214e2e19fa2e80518af6cd7b6dc0883bc8c",
                "md5": "65a646da3d24cafba5d6833f6afed7eb",
                "sha256": "174a6ba7fa0cd17e4eecfb704b0779a4c5eceabb44b3243d87ac7a0113433009"
            },
            "downloads": -1,
            "filename": "fpl-0.6.35.tar.gz",
            "has_sig": false,
            "md5_digest": "65a646da3d24cafba5d6833f6afed7eb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 31727,
            "upload_time": "2023-08-14T10:10:38",
            "upload_time_iso_8601": "2023-08-14T10:10:38.099631Z",
            "url": "https://files.pythonhosted.org/packages/60/68/0431497f936a9f7b6767e4a95214e2e19fa2e80518af6cd7b6dc0883bc8c/fpl-0.6.35.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-14 10:10:38",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "amosbastian",
    "github_project": "fpl",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "fpl"
}
        
Elapsed time: 0.10338s