{
"info": {
"author": "Robert Clark",
"author_email": "robdclark@outlook.com",
"bugtrack_url": null,
"classifiers": [
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "Sportsreference: A free sports API written for python\n######################################################\n.. image:: https://github.com/roclark/sportsreference/workflows/Sportsreference%20push%20tests/badge.svg\n :target: https://github.com/roclark/sportsreference/actions\n.. image:: https://readthedocs.org/projects/sportsreference/badge/?version=latest\n :target: https://sportsreference.readthedocs.io/en/latest/?badge=latest\n :alt: Documentation Status\n.. image:: https://img.shields.io/pypi/v/sportsreference.svg\n :target: https://pypi.org/project/sportsreference\n\n.. contents::\n\nSportsreference is a free python API that pulls the stats from\nwww.sports-reference.com and allows them to be easily be used in python-based\napplications, especially ones involving data analytics and machine learning.\n\nSportsreference exposes a plethora of sports information from major sports\nleagues in North America, such as the MLB, NBA, College Football and Basketball,\nNFL, and NHL. Every sport has its own set of valid API queries ranging from the\nlist of teams in a league, to the date and time of a game, to the total number\nof wins a team has secured during the season, and many, many more metrics that\npaint a more detailed picture of how a team has performed during a game or\nthroughout a season.\n\nInstallation\n============\n\nThe easiest way to install `sportsreference` is by downloading the latest\nreleased binary from PyPI using PIP. For instructions on installing PIP, visit\n`PyPA.io `_ for detailed steps on\ninstalling the package manager for your local environment.\n\nNext, run::\n\n pip install sportsreference\n\nto download and install the latest official release of `sportsreference` on\nyour machine. You now have the latest stable version of `sportsreference`\ninstalled and can begin using it following the examples below!\n\nIf the bleeding-edge version of `sportsreference` is desired, clone this\nrepository using git and install all of the package requirements with PIP::\n\n git clone https://github.com/roclark/sportsreference\n cd sportsreference\n pip install -r requirements.txt\n\nOnce complete, create a Python wheel for your default version of Python by\nrunning the following command::\n\n python setup.py sdist bdist_wheel\n\nThis will create a `.whl` file in the `dist` directory which can be installed\nwith the following command::\n\n pip install dist/*.whl\n\nExamples\n========\n\nThe following are a few examples showcasing how easy it can be to collect\nan abundance of metrics and information from all of the tracked leagues. The\nexamples below are only a miniscule subset of the total number of statistics\nthat can be pulled using sportsreference. Visit the documentation on\n`Read The Docs `_ for a\ncomplete list of all information exposed by the API.\n\nGet instances of all NHL teams for the 2018 season\n--------------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.nhl.teams import Teams\n\n teams = Teams(2018)\n\nPrint every NBA team's name and abbreviation\n--------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.nba.teams import Teams\n\n teams = Teams()\n for team in teams:\n print(team.name, team.abbreviation)\n\nGet a specific NFL team's season information\n--------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.nfl.teams import Teams\n\n teams = Teams()\n lions = teams('DET')\n\nPrint the date of every game for a NCAA Men's Basketball team\n-------------------------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.ncaab.schedule import Schedule\n\n purdue_schedule = Schedule('purdue')\n for game in purdue_schedule:\n print(game.date)\n\nPrint the number of interceptions by the away team in a NCAA Football game\n--------------------------------------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.ncaaf.boxscore import Boxscore\n\n championship_game = Boxscore('2018-01-08-georgia')\n print(championship_game.away_interceptions)\n\nGet a Pandas DataFrame of all stats for a MLB game\n--------------------------------------------------\n\n.. code-block:: python\n\n from sportsreference.mlb.boxscore import Boxscore\n\n game = Boxscore('BOS201806070')\n df = game.dataframe\n\nDocumentation\n=============\n\nTwo blog posts detailing the creation and basic usage of `sportsreference` can\nbe found on The Medium at the following links:\n\n- `Part 1: Creating a public sports API `_\n- `Part 2: Pull any sports metric in 10 lines of Python `_\n\nThe second post in particular is a great guide for getting started with\n`sportsreference` and is highly recommended for anyone who is new to the\npackage.\n\nComplete documentation is hosted on\n`readthedocs.org `_. Refer to\nthe documentation for a full list of all metrics and information exposed by\nsportsreference. The documentation is auto-generated using Sphinx based on the\ndocstrings in the sportsreference package.\n\nTesting\n=======\n\nSportsreference contains a testing suite which aims to test all major portions\nof code for proper functionality. To run the test suite against your\nenvironment, ensure all of the requirements are installed by running::\n\n pip install -r requirements.txt\n\nNext, start the tests by running py.test while optionally including coverage\nflags which identify the amount of production code covered by the testing\nframework::\n\n py.test --cov=sportsreference --cov-report term-missing tests/\n\nIf the tests were successful, it will return a green line will show a message at\nthe end of the output similar to the following::\n\n ======================= 380 passed in 245.56 seconds =======================\n\nIf a test failed, it will show the number of failed and what went wrong within\nthe test output. If that's the case, ensure you have the latest version of code\nand are in a supported environment. Otherwise, create an issue on GitHub to\nattempt to get the issue resolved.\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/roclark/sportsreference",
"keywords": "stats sports api sportsreference machine learning",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "sportsreference",
"package_url": "https://pypi.org/project/sportsreference/",
"platform": "",
"project_url": "https://pypi.org/project/sportsreference/",
"project_urls": {
"Homepage": "https://github.com/roclark/sportsreference"
},
"release_url": "https://pypi.org/project/sportsreference/0.4.6/",
"requires_dist": [
"pandas (>=0.24.1)",
"pyquery (>=1.4.0)",
"requests (>=2.18.4)"
],
"requires_python": ">=3.5",
"summary": "A free sports API written for python",
"version": "0.4.6"
},
"last_serial": 5936568,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "a63aa6dde7512261ea9d0afc372b7c55",
"sha256": "2ea0ac74b7a1d46f9369ca8d59921ca379b2f4b0e873f66a44035ae26e4d759e"
},
"downloads": -1,
"filename": "sportsreference-0.1.0-py2-none-any.whl",
"has_sig": false,
"md5_digest": "a63aa6dde7512261ea9d0afc372b7c55",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 174033,
"upload_time": "2018-08-03T20:15:52",
"url": "https://files.pythonhosted.org/packages/ea/8e/7becdebc22bfc96fa5390fe2b455581d8c6f9fcc3b554eb55adc08068629/sportsreference-0.1.0-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0e4ac052a231636f9aa235827fc7584a",
"sha256": "2b325f9a5bcf2847b73b2cf26830a66fa88ec9e55e3f7760a172389fa036d128"
},
"downloads": -1,
"filename": "sportsreference-0.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "0e4ac052a231636f9aa235827fc7584a",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 174032,
"upload_time": "2018-08-03T20:15:53",
"url": "https://files.pythonhosted.org/packages/39/23/e503fc75e8d141ee9f551924dddfeacb288cfe0efdf1bd260303779f7f4c/sportsreference-0.1.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "b23d151251b1e74092e81ef7b438e2f3",
"sha256": "5624c65177ae16b9b977b8e3a2fc9440aa1db901b38bac608c6648f341dd2620"
},
"downloads": -1,
"filename": "sportsreference-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "b23d151251b1e74092e81ef7b438e2f3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 122222,
"upload_time": "2018-08-03T20:15:56",
"url": "https://files.pythonhosted.org/packages/93/30/7c275d8f71b76757192374a9b9c12559127e3321283f5805e6d0bfdb82d5/sportsreference-0.1.0.tar.gz"
}
],
"0.1.1": [
{
"comment_text": "",
"digests": {
"md5": "322efc0cd7ab51763aa127fd45038dd8",
"sha256": "07244f1ad542b9dc2d19bf23d87d9c8a893f322e285a181da06fb0c30528708e"
},
"downloads": -1,
"filename": "sportsreference-0.1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "322efc0cd7ab51763aa127fd45038dd8",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 212682,
"upload_time": "2018-09-04T12:53:02",
"url": "https://files.pythonhosted.org/packages/b7/23/f787785d8fd2be6d5b57cf005e0ceefaca7429d5e87f9e207605f24b38a7/sportsreference-0.1.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7a479a46454146f97abf232c54515cc6",
"sha256": "741f4f78a686dfe39f70e4c67babc760c9f590be6fead84c68d98843efcee326"
},
"downloads": -1,
"filename": "sportsreference-0.1.1.tar.gz",
"has_sig": false,
"md5_digest": "7a479a46454146f97abf232c54515cc6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 124710,
"upload_time": "2018-09-04T12:53:04",
"url": "https://files.pythonhosted.org/packages/67/d2/5498d71251bf02d78949f1e4f6326b883cbac861fb40bb666daab91a82cf/sportsreference-0.1.1.tar.gz"
}
],
"0.2.0": [
{
"comment_text": "",
"digests": {
"md5": "ee6d7e3a4baddb7c464e3ee4cdd48bad",
"sha256": "1f7fd671016b04d57a3a40e88067aeb23f053f816f530fd638ede872ca811d14"
},
"downloads": -1,
"filename": "sportsreference-0.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ee6d7e3a4baddb7c464e3ee4cdd48bad",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 290467,
"upload_time": "2018-10-07T00:39:04",
"url": "https://files.pythonhosted.org/packages/06/a7/29c8da59823ea457df7d1c5b0fa3d5286fd18c6e42e0ac703b7a35b793d8/sportsreference-0.2.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1131cc260421f7faa824c25c7c4114a0",
"sha256": "b3b878b961652d71530f96473561d94563d86b6d791fa9c975863604c82ee87c"
},
"downloads": -1,
"filename": "sportsreference-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "1131cc260421f7faa824c25c7c4114a0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 218173,
"upload_time": "2018-10-07T00:39:06",
"url": "https://files.pythonhosted.org/packages/ee/e2/c60120f0db869ff6ac6ef22c0353df821c6fa3481b852550b6f550b05184/sportsreference-0.2.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "bb09283509ec523f3487999406604d8a",
"sha256": "958b2d88b3932119d8916b4ff3b0df98260691e22d6c42bb61c0e86ffc0cdfd5"
},
"downloads": -1,
"filename": "sportsreference-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "bb09283509ec523f3487999406604d8a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 293302,
"upload_time": "2018-11-13T20:19:21",
"url": "https://files.pythonhosted.org/packages/f1/59/9b2bc7b118ad1900a8108e47085e1128e3be6bafd259d972ef63c4da02d5/sportsreference-0.2.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "0ad3fc098f247ae0b8214aac8e39be84",
"sha256": "035a17d75b3cc25664868a89681a6a8c6b5ce4b7ab163c84a2605d5597cd31b9"
},
"downloads": -1,
"filename": "sportsreference-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "0ad3fc098f247ae0b8214aac8e39be84",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 219381,
"upload_time": "2018-11-13T20:19:23",
"url": "https://files.pythonhosted.org/packages/7e/80/ee5cc2acd8008ec2e78b926bc450c575d72263d19416253bdcd07cc331a6/sportsreference-0.2.1.tar.gz"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "226a89eb76a46fd942488fa2be75786d",
"sha256": "3c947f6f11f001a39dd50972ee9fdc463f1e7cbff83ca5182c4b544437276eb4"
},
"downloads": -1,
"filename": "sportsreference-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "226a89eb76a46fd942488fa2be75786d",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 293310,
"upload_time": "2018-11-15T15:35:13",
"url": "https://files.pythonhosted.org/packages/78/91/d5b2f674f0795c494da6a54c739353a0156ec89059e9248b66c13a85e5de/sportsreference-0.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a74f3777b34aa5c7b1bb815d42bf83d8",
"sha256": "2e588494bc0e8ae090aa7f0793142b6204b006acf90dac08cbc76678e0e3c985"
},
"downloads": -1,
"filename": "sportsreference-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "a74f3777b34aa5c7b1bb815d42bf83d8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 219370,
"upload_time": "2018-11-15T15:35:14",
"url": "https://files.pythonhosted.org/packages/36/02/91e2e2fe74e88050aed1476b838fc6dc981a480503af1ee628c81c038d79/sportsreference-0.2.2.tar.gz"
}
],
"0.3.0": [
{
"comment_text": "",
"digests": {
"md5": "7c56c6f00dec50a67ec9a5b484dbda4e",
"sha256": "0d2f66cd41c2819e294905d6d86f35c95b4ddd07022dc89ea69bfa96c22fe40e"
},
"downloads": -1,
"filename": "sportsreference-0.3.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "7c56c6f00dec50a67ec9a5b484dbda4e",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 314211,
"upload_time": "2018-12-16T15:33:56",
"url": "https://files.pythonhosted.org/packages/b0/dd/c6b30d3320e2c0b6c8dcbc061d5ad343dfe09390fd0c4051cdb8ae8c651e/sportsreference-0.3.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "edff115b93c1b85830996af2b5f50714",
"sha256": "5d839b52aeae8f87c0b529695b7e8ea13da36ed041b9e091ee05c1d01e30da3c"
},
"downloads": -1,
"filename": "sportsreference-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "edff115b93c1b85830996af2b5f50714",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 241578,
"upload_time": "2018-12-16T15:33:58",
"url": "https://files.pythonhosted.org/packages/75/8d/d9add909d49bde7920db2029d061477243ec533621d8b1b88ca454354117/sportsreference-0.3.0.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "654ae2dc032573e1130b8ad1f3210989",
"sha256": "ffb721327a852e45365169b14263f8139c14b0d1c8c95acaa29280337bf9dfbe"
},
"downloads": -1,
"filename": "sportsreference-0.3.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "654ae2dc032573e1130b8ad1f3210989",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 323205,
"upload_time": "2018-12-19T04:48:09",
"url": "https://files.pythonhosted.org/packages/ef/84/8380b300beee64c3f0162b01b354e3c924f52c3a934a26c0aec09a8c2195/sportsreference-0.3.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "aa49bb65aaf7b8e9232b3fcff70ee945",
"sha256": "8492ed83d8edd86e93a44421ad13835628e7193f104589b554dcddbedec8d50a"
},
"downloads": -1,
"filename": "sportsreference-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "aa49bb65aaf7b8e9232b3fcff70ee945",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 250244,
"upload_time": "2018-12-19T04:48:10",
"url": "https://files.pythonhosted.org/packages/c6/b2/3fe22af1e7b35c3c679734c012969f056ea43b3659fc6370a9646a72894d/sportsreference-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "faec37a2c3f651cccff7d7c4cf9b491a",
"sha256": "6620addd075cffe8efd6bf95ea127627fb7c84054fc99fd7d6fe12c20d426093"
},
"downloads": -1,
"filename": "sportsreference-0.3.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "faec37a2c3f651cccff7d7c4cf9b491a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 323000,
"upload_time": "2018-12-29T18:51:35",
"url": "https://files.pythonhosted.org/packages/22/5f/446f1db0a75dd24af9b191a7acbcb5a8f3f5eb37cdb081379dd97b0b7eab/sportsreference-0.3.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "1fbff3a4d43e021cec4c5e8bedc6cdd6",
"sha256": "9b433211d87c74e98389a17e6506533c0b9c8282444693cc99e079d6ab5176a3"
},
"downloads": -1,
"filename": "sportsreference-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "1fbff3a4d43e021cec4c5e8bedc6cdd6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 249950,
"upload_time": "2018-12-29T18:51:37",
"url": "https://files.pythonhosted.org/packages/c3/65/0842885586f9aeb2371ab380bb307d5a658047b400e376d3e47975e75e57/sportsreference-0.3.2.tar.gz"
}
],
"0.4.0": [
{
"comment_text": "",
"digests": {
"md5": "794d59bbf5fdb8118392eeecf968cdd3",
"sha256": "9d2e0090bc91c0aaf440904c09529f135f6f99800888002f14ac4d9c287fb113"
},
"downloads": -1,
"filename": "sportsreference-0.4.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "794d59bbf5fdb8118392eeecf968cdd3",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 360094,
"upload_time": "2019-02-08T16:53:22",
"url": "https://files.pythonhosted.org/packages/d4/10/96428eedad7e81042c9fcdb0c3c1eb2c7e8f853b5133b95b6645360a4b3e/sportsreference-0.4.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "921f971604cb51938b3891eb66a9b2ce",
"sha256": "6edbd7da49950959b114d400aa425ea388197927352575a90314cb71a9ccc5b0"
},
"downloads": -1,
"filename": "sportsreference-0.4.0.tar.gz",
"has_sig": false,
"md5_digest": "921f971604cb51938b3891eb66a9b2ce",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*",
"size": 277179,
"upload_time": "2019-02-08T16:53:23",
"url": "https://files.pythonhosted.org/packages/5e/0c/7e5c083e7ec7cca5ba030b344ddfb3f065f916611dbefa2cdb313ea64784/sportsreference-0.4.0.tar.gz"
}
],
"0.4.1": [
{
"comment_text": "",
"digests": {
"md5": "f8eeb9e58fc130d3802a95c8a5a2d9d5",
"sha256": "a9dda78a39cfc5c0a0582475c669f57933aecf11dba490c83fe561989b75315a"
},
"downloads": -1,
"filename": "sportsreference-0.4.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "f8eeb9e58fc130d3802a95c8a5a2d9d5",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 359504,
"upload_time": "2019-03-22T14:06:33",
"url": "https://files.pythonhosted.org/packages/b6/0b/c9367aa431fa285aaee4389d1839f07270d2828a144ace7f3da0e296c1c9/sportsreference-0.4.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "08f2277ed03d441aabde1b9df9b89d17",
"sha256": "1b66e39f6c5dd592a0873906d6b91a75d70996c17ee69896484552472e898a4b"
},
"downloads": -1,
"filename": "sportsreference-0.4.1.tar.gz",
"has_sig": false,
"md5_digest": "08f2277ed03d441aabde1b9df9b89d17",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 277697,
"upload_time": "2019-03-22T14:06:35",
"url": "https://files.pythonhosted.org/packages/22/3e/d71c6ab8c5599089c244b7e3c2fa49d44a131c9342692f16fb1a12c01594/sportsreference-0.4.1.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "ca5a87f3efd44e6eb694453e73cfb4fa",
"sha256": "ab4f1f02059f9e7959ca6be6d395fce59432b0d4a7d8c16258f5f7e43beb5790"
},
"downloads": -1,
"filename": "sportsreference-0.4.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ca5a87f3efd44e6eb694453e73cfb4fa",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 367151,
"upload_time": "2019-05-01T01:59:57",
"url": "https://files.pythonhosted.org/packages/d7/0d/eae2cf0fc15af4c3245f49c65ecb5661c10a713a21eef816ab0a21ed7f60/sportsreference-0.4.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "2325b8f0e2119c96aa4b3bf78e736452",
"sha256": "7dc03f4da6c418e1748ffc549728abae4d89c3cfe674e5dca93f2a36529a751d"
},
"downloads": -1,
"filename": "sportsreference-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "2325b8f0e2119c96aa4b3bf78e736452",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 282534,
"upload_time": "2019-05-01T01:59:59",
"url": "https://files.pythonhosted.org/packages/fc/6e/30847695cb2a906a4b59e151f7d72f15dba78de3353a59ad0a509c26821d/sportsreference-0.4.2.tar.gz"
}
],
"0.4.3": [
{
"comment_text": "",
"digests": {
"md5": "c4e9a6edfc3bf433ae7d5f10e3415639",
"sha256": "4a83630a14a6d8e10be356c443bb0ae2992a5ac86ab365fed891aae8ba8dd566"
},
"downloads": -1,
"filename": "sportsreference-0.4.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "c4e9a6edfc3bf433ae7d5f10e3415639",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 367323,
"upload_time": "2019-06-01T01:09:48",
"url": "https://files.pythonhosted.org/packages/8d/3f/d71bfb899f617666560ff837e88c2200cd4046332ebd2f3e311940ea1ac6/sportsreference-0.4.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "936b5c68d1f624e84750d207f9cd1917",
"sha256": "ef197ed3de102d3ee6407ebec65fbe3a399e9360aca264ea7536da4de246e7a0"
},
"downloads": -1,
"filename": "sportsreference-0.4.3.tar.gz",
"has_sig": false,
"md5_digest": "936b5c68d1f624e84750d207f9cd1917",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*",
"size": 282652,
"upload_time": "2019-06-01T01:09:50",
"url": "https://files.pythonhosted.org/packages/b4/d4/b422d72b472cfd05d9d20828867343440b6e24ce32f14d23207477cf74a9/sportsreference-0.4.3.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "3149269930374d464f57a24b7a1d018a",
"sha256": "905f4de8a489ba3f6eb0bbd570d51c5000fee91d688587fdff5e080e9735f544"
},
"downloads": -1,
"filename": "sportsreference-0.4.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "3149269930374d464f57a24b7a1d018a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.5",
"size": 370098,
"upload_time": "2019-09-07T03:52:49",
"url": "https://files.pythonhosted.org/packages/3c/7b/21ccc08ba2be8e35fe6974eb46493bcad55b55fcc114457626df20ca67e3/sportsreference-0.4.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ad1046ffbd5b6643feacf998604454a8",
"sha256": "86a7cb0805030cf400744bf0f17517fe6530d3bd7156dac26a9071a49efef8ba"
},
"downloads": -1,
"filename": "sportsreference-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "ad1046ffbd5b6643feacf998604454a8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.5",
"size": 285008,
"upload_time": "2019-09-07T03:52:51",
"url": "https://files.pythonhosted.org/packages/bb/02/e0fe951dd5253488ab373754e256d97921c9216d7c575e0f991d4aebde1d/sportsreference-0.4.4.tar.gz"
}
],
"0.4.5": [
{
"comment_text": "",
"digests": {
"md5": "a99c8d05bf11ac85003611811dc0cc56",
"sha256": "1805405584261daf0763d8398d2bd1be83b96a819719c811b5dc224ceab36522"
},
"downloads": -1,
"filename": "sportsreference-0.4.5-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a99c8d05bf11ac85003611811dc0cc56",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.5",
"size": 371032,
"upload_time": "2019-09-24T03:11:09",
"url": "https://files.pythonhosted.org/packages/68/e3/482667481b1369773755c278e198b87a64bd5ca9c3bedc001973a3195b2b/sportsreference-0.4.5-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3776ee5ea0151569d00d2426c2e91dfa",
"sha256": "ed0ee797a837a13d53f4c7c09a7694de36ccffe117de375587cc4871400d029c"
},
"downloads": -1,
"filename": "sportsreference-0.4.5.tar.gz",
"has_sig": false,
"md5_digest": "3776ee5ea0151569d00d2426c2e91dfa",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.5",
"size": 286074,
"upload_time": "2019-09-24T03:11:12",
"url": "https://files.pythonhosted.org/packages/e9/27/29d9247b1110c3311a6b3a46e2bd6565d0b241092f5b6807738e5bd1f5fc/sportsreference-0.4.5.tar.gz"
}
],
"0.4.6": [
{
"comment_text": "",
"digests": {
"md5": "01759bc90bfb304ff10035ebf44b0247",
"sha256": "df5338354f43910e9090a10ebe7ea8d46e3465a7ebb0609185ce33a05c91051f"
},
"downloads": -1,
"filename": "sportsreference-0.4.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01759bc90bfb304ff10035ebf44b0247",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.5",
"size": 373542,
"upload_time": "2019-10-07T01:32:45",
"url": "https://files.pythonhosted.org/packages/0f/66/ec5813acee092b6a42296fe18dbd75bb27d9d123b3f34dbb1162e5c1a831/sportsreference-0.4.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3614ae26e02ef7e3abea0d6fa1636984",
"sha256": "98fb6784fdb5c3f0d80b4aff98815d5bbd9a02185dcedd4a853d3ba2f054d90b"
},
"downloads": -1,
"filename": "sportsreference-0.4.6.tar.gz",
"has_sig": false,
"md5_digest": "3614ae26e02ef7e3abea0d6fa1636984",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.5",
"size": 286892,
"upload_time": "2019-10-07T01:32:47",
"url": "https://files.pythonhosted.org/packages/ae/fc/5834263875b0dbc0509bdd4fef21d1a31e6e56e639034b2d7ec985f55502/sportsreference-0.4.6.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "01759bc90bfb304ff10035ebf44b0247",
"sha256": "df5338354f43910e9090a10ebe7ea8d46e3465a7ebb0609185ce33a05c91051f"
},
"downloads": -1,
"filename": "sportsreference-0.4.6-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "01759bc90bfb304ff10035ebf44b0247",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.5",
"size": 373542,
"upload_time": "2019-10-07T01:32:45",
"url": "https://files.pythonhosted.org/packages/0f/66/ec5813acee092b6a42296fe18dbd75bb27d9d123b3f34dbb1162e5c1a831/sportsreference-0.4.6-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "3614ae26e02ef7e3abea0d6fa1636984",
"sha256": "98fb6784fdb5c3f0d80b4aff98815d5bbd9a02185dcedd4a853d3ba2f054d90b"
},
"downloads": -1,
"filename": "sportsreference-0.4.6.tar.gz",
"has_sig": false,
"md5_digest": "3614ae26e02ef7e3abea0d6fa1636984",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.5",
"size": 286892,
"upload_time": "2019-10-07T01:32:47",
"url": "https://files.pythonhosted.org/packages/ae/fc/5834263875b0dbc0509bdd4fef21d1a31e6e56e639034b2d7ec985f55502/sportsreference-0.4.6.tar.gz"
}
]
}