├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── docs ├── api.md ├── development.md └── index.md ├── draft_kings ├── __init__.py ├── client.py ├── data.py ├── http_client.py ├── output │ ├── __init__.py │ ├── objects │ │ ├── __init__.py │ │ ├── contests.py │ │ ├── countries.py │ │ ├── draft_group.py │ │ ├── draftables.py │ │ ├── game_type_rules.py │ │ ├── players.py │ │ └── regions.py │ ├── schema │ │ ├── __init__.py │ │ ├── contests.py │ │ ├── countries.py │ │ ├── draft_group.py │ │ ├── draftables.py │ │ ├── fields.py │ │ ├── game_type_rules.py │ │ ├── players.py │ │ └── regions.py │ └── transformers │ │ ├── __init__.py │ │ ├── contests.py │ │ ├── countries.py │ │ ├── draft_group.py │ │ ├── draftables.py │ │ ├── game_type_rules.py │ │ ├── players.py │ │ ├── regions.py │ │ └── sports.py ├── response │ ├── __init__.py │ ├── objects │ │ ├── __init__.py │ │ ├── contests.py │ │ ├── countries.py │ │ ├── draft_group.py │ │ ├── draftables.py │ │ ├── game_type_rules.py │ │ ├── players.py │ │ └── regions.py │ └── schema │ │ ├── __init__.py │ │ ├── contests.py │ │ ├── countries.py │ │ ├── draft_group.py │ │ ├── draftables.py │ │ ├── fields.py │ │ ├── game_type_rules.py │ │ ├── players.py │ │ └── regions.py ├── url_builder.py └── utilities.py ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── config.py ├── files ├── available_players │ ├── 22831.json │ ├── 41409.json │ ├── 41793.json │ └── 42463.json ├── contests │ ├── cbb │ │ └── 2020_10_22.json │ ├── cfb │ │ └── 2020_10_22.json │ ├── cfl │ │ └── empty.json │ ├── euroleague │ │ └── empty.json │ ├── golf │ │ └── 2020_10_22.json │ ├── lol │ │ └── empty.json │ ├── mlb │ │ └── 2020_10_22.json │ ├── mma │ │ └── empty.json │ ├── nascar │ │ └── empty.json │ ├── nba │ │ └── empty.json │ ├── nfl │ │ ├── 2020_10_22.json │ │ └── 2020_10_23.json │ ├── nhl │ │ └── empty.json │ ├── soccer │ │ └── 2020_10_22.json │ └── tennis │ │ └── empty.json ├── countries.json ├── draft_group_details │ ├── 11513.json │ ├── 22831.json │ ├── 22855.json │ ├── 22916.json │ ├── 22927.json │ ├── 22952.json │ ├── 22953.json │ ├── 22958.json │ ├── 26545_historical.json │ ├── 26545_upcoming.json │ ├── 41409_finalized.json │ ├── 41409_historical.json │ └── 41409_upcoming.json ├── draftables │ ├── 41793 │ │ ├── postponed.json │ │ └── upcoming.json │ ├── 11513.json │ ├── 22831.json │ ├── 22855.json │ ├── 22916.json │ ├── 22927.json │ ├── 22952.json │ ├── 22953.json │ ├── 22958.json │ ├── historical_golf_draftables.json │ ├── postponed_player.json │ └── upcoming_nfl_draftables.json ├── game_type_rules │ └── 1.json └── regions │ ├── ca.json │ ├── gb.json │ └── us.json ├── integration ├── __init__.py ├── client │ ├── __init__.py │ ├── test_available_players.py │ ├── test_client.py │ ├── test_contests.py │ ├── test_countries.py │ ├── test_draft_group_details.py │ ├── test_draftables.py │ ├── test_game_type_rules.py │ └── test_regions.py └── response │ ├── __init__.py │ └── schema │ ├── __init__.py │ ├── test_contests.py │ ├── test_countries.py │ ├── test_draft_group.py │ ├── test_draftables.py │ ├── test_game_type_rules.py │ ├── test_players.py │ └── test_regions.py ├── test_url_builder.py ├── test_utilities.py └── unit ├── __init__.py ├── output ├── __init__.py ├── schema │ ├── __init__.py │ ├── test_contests_deserialization.py │ ├── test_contests_serialization.py │ ├── test_countries_deserialization.py │ ├── test_countries_serialization.py │ ├── test_draft_group_deserialization.py │ ├── test_draft_group_serialization.py │ ├── test_draftables_deserialization.py │ ├── test_draftables_serialization.py │ └── test_fields.py └── transformers │ ├── __init__.py │ ├── test_contests.py │ ├── test_countries.py │ └── test_draft_group.py └── response ├── __init__.py └── objects ├── __init__.py └── test_contests.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/docs/index.md -------------------------------------------------------------------------------- /draft_kings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/__init__.py -------------------------------------------------------------------------------- /draft_kings/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/client.py -------------------------------------------------------------------------------- /draft_kings/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/data.py -------------------------------------------------------------------------------- /draft_kings/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/http_client.py -------------------------------------------------------------------------------- /draft_kings/output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/__init__.py -------------------------------------------------------------------------------- /draft_kings/output/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/__init__.py -------------------------------------------------------------------------------- /draft_kings/output/objects/contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/contests.py -------------------------------------------------------------------------------- /draft_kings/output/objects/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/countries.py -------------------------------------------------------------------------------- /draft_kings/output/objects/draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/draft_group.py -------------------------------------------------------------------------------- /draft_kings/output/objects/draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/draftables.py -------------------------------------------------------------------------------- /draft_kings/output/objects/game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/game_type_rules.py -------------------------------------------------------------------------------- /draft_kings/output/objects/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/players.py -------------------------------------------------------------------------------- /draft_kings/output/objects/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/objects/regions.py -------------------------------------------------------------------------------- /draft_kings/output/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/__init__.py -------------------------------------------------------------------------------- /draft_kings/output/schema/contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/contests.py -------------------------------------------------------------------------------- /draft_kings/output/schema/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/countries.py -------------------------------------------------------------------------------- /draft_kings/output/schema/draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/draft_group.py -------------------------------------------------------------------------------- /draft_kings/output/schema/draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/draftables.py -------------------------------------------------------------------------------- /draft_kings/output/schema/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/fields.py -------------------------------------------------------------------------------- /draft_kings/output/schema/game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/game_type_rules.py -------------------------------------------------------------------------------- /draft_kings/output/schema/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/players.py -------------------------------------------------------------------------------- /draft_kings/output/schema/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/schema/regions.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/__init__.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/contests.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/countries.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/draft_group.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/draftables.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/game_type_rules.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/players.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/regions.py -------------------------------------------------------------------------------- /draft_kings/output/transformers/sports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/output/transformers/sports.py -------------------------------------------------------------------------------- /draft_kings/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/__init__.py -------------------------------------------------------------------------------- /draft_kings/response/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/__init__.py -------------------------------------------------------------------------------- /draft_kings/response/objects/contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/contests.py -------------------------------------------------------------------------------- /draft_kings/response/objects/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/countries.py -------------------------------------------------------------------------------- /draft_kings/response/objects/draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/draft_group.py -------------------------------------------------------------------------------- /draft_kings/response/objects/draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/draftables.py -------------------------------------------------------------------------------- /draft_kings/response/objects/game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/game_type_rules.py -------------------------------------------------------------------------------- /draft_kings/response/objects/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/players.py -------------------------------------------------------------------------------- /draft_kings/response/objects/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/objects/regions.py -------------------------------------------------------------------------------- /draft_kings/response/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/__init__.py -------------------------------------------------------------------------------- /draft_kings/response/schema/contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/contests.py -------------------------------------------------------------------------------- /draft_kings/response/schema/countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/countries.py -------------------------------------------------------------------------------- /draft_kings/response/schema/draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/draft_group.py -------------------------------------------------------------------------------- /draft_kings/response/schema/draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/draftables.py -------------------------------------------------------------------------------- /draft_kings/response/schema/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/fields.py -------------------------------------------------------------------------------- /draft_kings/response/schema/game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/game_type_rules.py -------------------------------------------------------------------------------- /draft_kings/response/schema/players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/players.py -------------------------------------------------------------------------------- /draft_kings/response/schema/regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/response/schema/regions.py -------------------------------------------------------------------------------- /draft_kings/url_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/url_builder.py -------------------------------------------------------------------------------- /draft_kings/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/draft_kings/utilities.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/files/available_players/22831.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/available_players/22831.json -------------------------------------------------------------------------------- /tests/files/available_players/41409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/available_players/41409.json -------------------------------------------------------------------------------- /tests/files/available_players/41793.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/available_players/41793.json -------------------------------------------------------------------------------- /tests/files/available_players/42463.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/available_players/42463.json -------------------------------------------------------------------------------- /tests/files/contests/cbb/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/cbb/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/cfb/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/cfb/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/cfl/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/cfl/empty.json -------------------------------------------------------------------------------- /tests/files/contests/euroleague/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/euroleague/empty.json -------------------------------------------------------------------------------- /tests/files/contests/golf/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/golf/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/lol/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/lol/empty.json -------------------------------------------------------------------------------- /tests/files/contests/mlb/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/mlb/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/mma/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/mma/empty.json -------------------------------------------------------------------------------- /tests/files/contests/nascar/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/nascar/empty.json -------------------------------------------------------------------------------- /tests/files/contests/nba/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/nba/empty.json -------------------------------------------------------------------------------- /tests/files/contests/nfl/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/nfl/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/nfl/2020_10_23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/nfl/2020_10_23.json -------------------------------------------------------------------------------- /tests/files/contests/nhl/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/nhl/empty.json -------------------------------------------------------------------------------- /tests/files/contests/soccer/2020_10_22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/soccer/2020_10_22.json -------------------------------------------------------------------------------- /tests/files/contests/tennis/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/contests/tennis/empty.json -------------------------------------------------------------------------------- /tests/files/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/countries.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/11513.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/11513.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22831.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22831.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22855.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22855.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22916.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22927.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22952.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22953.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22953.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/22958.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/22958.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/26545_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/26545_historical.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/26545_upcoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/26545_upcoming.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/41409_finalized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/41409_finalized.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/41409_historical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/41409_historical.json -------------------------------------------------------------------------------- /tests/files/draft_group_details/41409_upcoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draft_group_details/41409_upcoming.json -------------------------------------------------------------------------------- /tests/files/draftables/11513.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/11513.json -------------------------------------------------------------------------------- /tests/files/draftables/22831.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22831.json -------------------------------------------------------------------------------- /tests/files/draftables/22855.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22855.json -------------------------------------------------------------------------------- /tests/files/draftables/22916.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22916.json -------------------------------------------------------------------------------- /tests/files/draftables/22927.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22927.json -------------------------------------------------------------------------------- /tests/files/draftables/22952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22952.json -------------------------------------------------------------------------------- /tests/files/draftables/22953.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22953.json -------------------------------------------------------------------------------- /tests/files/draftables/22958.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/22958.json -------------------------------------------------------------------------------- /tests/files/draftables/41793/postponed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/41793/postponed.json -------------------------------------------------------------------------------- /tests/files/draftables/41793/upcoming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/41793/upcoming.json -------------------------------------------------------------------------------- /tests/files/draftables/historical_golf_draftables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/historical_golf_draftables.json -------------------------------------------------------------------------------- /tests/files/draftables/postponed_player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/postponed_player.json -------------------------------------------------------------------------------- /tests/files/draftables/upcoming_nfl_draftables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/draftables/upcoming_nfl_draftables.json -------------------------------------------------------------------------------- /tests/files/game_type_rules/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/game_type_rules/1.json -------------------------------------------------------------------------------- /tests/files/regions/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/regions/ca.json -------------------------------------------------------------------------------- /tests/files/regions/gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/regions/gb.json -------------------------------------------------------------------------------- /tests/files/regions/us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/files/regions/us.json -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/__init__.py -------------------------------------------------------------------------------- /tests/integration/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/__init__.py -------------------------------------------------------------------------------- /tests/integration/client/test_available_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_available_players.py -------------------------------------------------------------------------------- /tests/integration/client/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_client.py -------------------------------------------------------------------------------- /tests/integration/client/test_contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_contests.py -------------------------------------------------------------------------------- /tests/integration/client/test_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_countries.py -------------------------------------------------------------------------------- /tests/integration/client/test_draft_group_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_draft_group_details.py -------------------------------------------------------------------------------- /tests/integration/client/test_draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_draftables.py -------------------------------------------------------------------------------- /tests/integration/client/test_game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_game_type_rules.py -------------------------------------------------------------------------------- /tests/integration/client/test_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/client/test_regions.py -------------------------------------------------------------------------------- /tests/integration/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/__init__.py -------------------------------------------------------------------------------- /tests/integration/response/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/__init__.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_contests.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_countries.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_draft_group.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_draftables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_draftables.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_game_type_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_game_type_rules.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_players.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_players.py -------------------------------------------------------------------------------- /tests/integration/response/schema/test_regions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/integration/response/schema/test_regions.py -------------------------------------------------------------------------------- /tests/test_url_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/test_url_builder.py -------------------------------------------------------------------------------- /tests/test_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/test_utilities.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/output/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/__init__.py -------------------------------------------------------------------------------- /tests/unit/output/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/__init__.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_contests_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_contests_deserialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_contests_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_contests_serialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_countries_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_countries_deserialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_countries_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_countries_serialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_draft_group_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_draft_group_deserialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_draft_group_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_draft_group_serialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_draftables_deserialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_draftables_deserialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_draftables_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_draftables_serialization.py -------------------------------------------------------------------------------- /tests/unit/output/schema/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/schema/test_fields.py -------------------------------------------------------------------------------- /tests/unit/output/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/transformers/__init__.py -------------------------------------------------------------------------------- /tests/unit/output/transformers/test_contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/transformers/test_contests.py -------------------------------------------------------------------------------- /tests/unit/output/transformers/test_countries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/transformers/test_countries.py -------------------------------------------------------------------------------- /tests/unit/output/transformers/test_draft_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/output/transformers/test_draft_group.py -------------------------------------------------------------------------------- /tests/unit/response/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/response/__init__.py -------------------------------------------------------------------------------- /tests/unit/response/objects/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/response/objects/__init__.py -------------------------------------------------------------------------------- /tests/unit/response/objects/test_contests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaebradley/draftkings_client/HEAD/tests/unit/response/objects/test_contests.py --------------------------------------------------------------------------------