├── .flake8 ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs └── index.html ├── generate_endpoint_doc.py ├── requirements-dev.txt ├── requirements.txt ├── setup.py ├── statsapi ├── __init__.py ├── endpoints.py └── version.py └── tests ├── __init__.py └── test_get.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/docs/index.html -------------------------------------------------------------------------------- /generate_endpoint_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/generate_endpoint_doc.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/setup.py -------------------------------------------------------------------------------- /statsapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/statsapi/__init__.py -------------------------------------------------------------------------------- /statsapi/endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/statsapi/endpoints.py -------------------------------------------------------------------------------- /statsapi/version.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | VERSION = "1.9.0" 4 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_get.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toddrob99/MLB-StatsAPI/HEAD/tests/test_get.py --------------------------------------------------------------------------------