├── .gitignore ├── AUTHORS ├── ChangeLog ├── LICENSE ├── README.md ├── docs ├── api_reference.rst ├── conf.py ├── fangraphs.exceptions.rst ├── fangraphs.leaders.rst ├── fangraphs.rst ├── fangraphs.selectors.rst ├── index.rst └── quickstart.rst ├── fangraphs ├── __init__.py ├── exceptions │ └── __init__.py ├── leaders │ ├── __init__.py │ └── leaders.py ├── selectors │ ├── __init__.py │ └── leaders_sel.py └── tests │ ├── __init__.py │ └── test_leaders.py ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/AUTHORS -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/README.md -------------------------------------------------------------------------------- /docs/api_reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/api_reference.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fangraphs.exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/fangraphs.exceptions.rst -------------------------------------------------------------------------------- /docs/fangraphs.leaders.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/fangraphs.leaders.rst -------------------------------------------------------------------------------- /docs/fangraphs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/fangraphs.rst -------------------------------------------------------------------------------- /docs/fangraphs.selectors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/fangraphs.selectors.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /fangraphs/__init__.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | # FanGraphs/__init__.py 3 | -------------------------------------------------------------------------------- /fangraphs/exceptions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/exceptions/__init__.py -------------------------------------------------------------------------------- /fangraphs/leaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/leaders/__init__.py -------------------------------------------------------------------------------- /fangraphs/leaders/leaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/leaders/leaders.py -------------------------------------------------------------------------------- /fangraphs/selectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/selectors/__init__.py -------------------------------------------------------------------------------- /fangraphs/selectors/leaders_sel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/selectors/leaders_sel.py -------------------------------------------------------------------------------- /fangraphs/tests/__init__.py: -------------------------------------------------------------------------------- 1 | #! python3 2 | # tests/__init__.py 3 | -------------------------------------------------------------------------------- /fangraphs/tests/test_leaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/fangraphs/tests/test_leaders.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JacobLee23/FanGraphs-Export/HEAD/setup.py --------------------------------------------------------------------------------