stadar 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stadar-0.1.5/PKG-INFO +86 -0
- stadar-0.1.5/README.md +59 -0
- stadar-0.1.5/pyproject.toml +49 -0
- stadar-0.1.5/setup.cfg +4 -0
- stadar-0.1.5/stadar/__init__.py +177 -0
- stadar-0.1.5/stadar/api/__init__.py +14 -0
- stadar-0.1.5/stadar/api/account_api.py +1602 -0
- stadar-0.1.5/stadar/api/auth_api.py +1593 -0
- stadar-0.1.5/stadar/api/billing_api.py +548 -0
- stadar-0.1.5/stadar/api/games_api.py +554 -0
- stadar-0.1.5/stadar/api/leagues_api.py +1261 -0
- stadar-0.1.5/stadar/api/matches_api.py +1007 -0
- stadar-0.1.5/stadar/api/meta_api.py +1019 -0
- stadar-0.1.5/stadar/api/series_api.py +1249 -0
- stadar-0.1.5/stadar/api/tournaments_api.py +736 -0
- stadar-0.1.5/stadar/api/webhooks_api.py +1114 -0
- stadar-0.1.5/stadar/api_client.py +805 -0
- stadar-0.1.5/stadar/api_response.py +21 -0
- stadar-0.1.5/stadar/configuration.py +640 -0
- stadar-0.1.5/stadar/exceptions.py +219 -0
- stadar-0.1.5/stadar/models/__init__.py +72 -0
- stadar-0.1.5/stadar/models/account_create_key201_response.py +125 -0
- stadar-0.1.5/stadar/models/account_create_key_request.py +103 -0
- stadar-0.1.5/stadar/models/account_list_keys200_response.py +110 -0
- stadar-0.1.5/stadar/models/account_me_capabilities200_response.py +112 -0
- stadar-0.1.5/stadar/models/account_usage_recent200_response.py +110 -0
- stadar-0.1.5/stadar/models/api_key_summary.py +111 -0
- stadar-0.1.5/stadar/models/auth_me_response.py +112 -0
- stadar-0.1.5/stadar/models/auth_me_response_data.py +106 -0
- stadar-0.1.5/stadar/models/capability_set.py +121 -0
- stadar-0.1.5/stadar/models/cs2_preview_extras.py +121 -0
- stadar-0.1.5/stadar/models/cs2_preview_extras_map_veto_history.py +108 -0
- stadar-0.1.5/stadar/models/cs2_preview_extras_map_win_rate_value.py +105 -0
- stadar-0.1.5/stadar/models/error_body.py +108 -0
- stadar-0.1.5/stadar/models/error_envelope.py +106 -0
- stadar-0.1.5/stadar/models/game.py +125 -0
- stadar-0.1.5/stadar/models/game_envelope.py +112 -0
- stadar-0.1.5/stadar/models/games_list_response.py +116 -0
- stadar-0.1.5/stadar/models/head_to_head.py +110 -0
- stadar-0.1.5/stadar/models/healthz200_response.py +112 -0
- stadar-0.1.5/stadar/models/last5_result.py +118 -0
- stadar-0.1.5/stadar/models/league.py +118 -0
- stadar-0.1.5/stadar/models/league_envelope.py +112 -0
- stadar-0.1.5/stadar/models/league_summary.py +106 -0
- stadar-0.1.5/stadar/models/leagues_list_response.py +116 -0
- stadar-0.1.5/stadar/models/match.py +173 -0
- stadar-0.1.5/stadar/models/match_envelope.py +112 -0
- stadar-0.1.5/stadar/models/match_participant.py +110 -0
- stadar-0.1.5/stadar/models/match_preview.py +130 -0
- stadar-0.1.5/stadar/models/match_preview_envelope.py +112 -0
- stadar-0.1.5/stadar/models/match_preview_form.py +111 -0
- stadar-0.1.5/stadar/models/match_preview_last5.py +119 -0
- stadar-0.1.5/stadar/models/matches_list_response.py +116 -0
- stadar-0.1.5/stadar/models/meta.py +122 -0
- stadar-0.1.5/stadar/models/paging.py +106 -0
- stadar-0.1.5/stadar/models/root_version200_response.py +106 -0
- stadar-0.1.5/stadar/models/series.py +129 -0
- stadar-0.1.5/stadar/models/series_envelope.py +112 -0
- stadar-0.1.5/stadar/models/series_list_response.py +116 -0
- stadar-0.1.5/stadar/models/series_summary.py +106 -0
- stadar-0.1.5/stadar/models/series_winner.py +104 -0
- stadar-0.1.5/stadar/models/signup_request.py +105 -0
- stadar-0.1.5/stadar/models/source_credit.py +106 -0
- stadar-0.1.5/stadar/models/stream.py +110 -0
- stadar-0.1.5/stadar/models/team_form.py +117 -0
- stadar-0.1.5/stadar/models/tournament.py +159 -0
- stadar-0.1.5/stadar/models/tournament_envelope.py +112 -0
- stadar-0.1.5/stadar/models/tournament_prize_pool.py +104 -0
- stadar-0.1.5/stadar/models/tournament_summary.py +110 -0
- stadar-0.1.5/stadar/models/tournaments_list_response.py +116 -0
- stadar-0.1.5/stadar/models/usage_row.py +113 -0
- stadar-0.1.5/stadar/models/usage_today.py +111 -0
- stadar-0.1.5/stadar/models/webhook_subscription.py +119 -0
- stadar-0.1.5/stadar/models/webhook_subscription_request.py +119 -0
- stadar-0.1.5/stadar/models/webhooks_create201_response.py +121 -0
- stadar-0.1.5/stadar/models/webhooks_list200_response.py +110 -0
- stadar-0.1.5/stadar/py.typed +0 -0
- stadar-0.1.5/stadar/rest.py +264 -0
- stadar-0.1.5/stadar.egg-info/PKG-INFO +86 -0
- stadar-0.1.5/stadar.egg-info/SOURCES.txt +81 -0
- stadar-0.1.5/stadar.egg-info/dependency_links.txt +1 -0
- stadar-0.1.5/stadar.egg-info/requires.txt +4 -0
- stadar-0.1.5/stadar.egg-info/top_level.txt +1 -0
stadar-0.1.5/PKG-INFO
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stadar
|
|
3
|
+
Version: 0.1.5
|
|
4
|
+
Summary: Official Python SDK for the Stadar esports API (stadar.net)
|
|
5
|
+
Author-email: Stadar <hello@stadar.net>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://stadar.net
|
|
8
|
+
Project-URL: Documentation, https://stadar.net/docs/api
|
|
9
|
+
Project-URL: Repository, https://github.com/macgraver/esports-api
|
|
10
|
+
Project-URL: Changelog, https://stadar.net/changelog
|
|
11
|
+
Keywords: esports,api,stadar,lol,cs2,dota,valorant
|
|
12
|
+
Classifier: Development Status :: 4 - Beta
|
|
13
|
+
Classifier: Intended Audience :: Developers
|
|
14
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.9
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: urllib3<3.0.0,>=1.25.3
|
|
24
|
+
Requires-Dist: python-dateutil>=2.8.2
|
|
25
|
+
Requires-Dist: pydantic>=2.0
|
|
26
|
+
Requires-Dist: typing-extensions>=4.7.1
|
|
27
|
+
|
|
28
|
+
# stadar — Python SDK for the Stadar esports API
|
|
29
|
+
|
|
30
|
+
Official Python client. Pip-installable. Type-hinted. Generated from
|
|
31
|
+
the public OpenAPI 3.1 spec — see
|
|
32
|
+
[stadar.net/docs/api](https://stadar.net/docs/api) for the full
|
|
33
|
+
reference and `clients/README.md` in the
|
|
34
|
+
[monorepo](https://github.com/macgraver/esports-api) for the codegen
|
|
35
|
+
posture.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install stadar
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Quick start
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
from stadar import Client
|
|
45
|
+
|
|
46
|
+
# Reads $STADAR_API_KEY from env, with $STADAR_API_URL override.
|
|
47
|
+
client = Client.from_env()
|
|
48
|
+
|
|
49
|
+
# Or pass explicitly:
|
|
50
|
+
client = Client(api_key="esp_live_...", base_url="https://api.stadar.net")
|
|
51
|
+
|
|
52
|
+
matches = client.matches.list(game="cs2", status="live")
|
|
53
|
+
for m in matches.data:
|
|
54
|
+
print(m.id, m.team_a.slug, "vs", m.team_b.slug)
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## Sandbox
|
|
58
|
+
|
|
59
|
+
```python
|
|
60
|
+
# `esp_test_`-prefixed keys auto-route to the sandbox fixture set.
|
|
61
|
+
# `meta.sandbox: true` flags every response from the sandbox.
|
|
62
|
+
client = Client(api_key="esp_test_...")
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Webhooks
|
|
66
|
+
|
|
67
|
+
```python
|
|
68
|
+
from stadar.webhooks import verify_signature
|
|
69
|
+
|
|
70
|
+
@app.post("/stadar-webhook")
|
|
71
|
+
def handle(request):
|
|
72
|
+
body = request.body # raw bytes
|
|
73
|
+
signature = request.headers["X-Stadar-Signature"]
|
|
74
|
+
if not verify_signature(body, signature, secret="your-webhook-secret"):
|
|
75
|
+
return 401
|
|
76
|
+
event = parse_event(body)
|
|
77
|
+
# ... handle event
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
See [stadar.net/docs/webhooks](https://stadar.net/docs/webhooks) for
|
|
81
|
+
the signature verification recipe.
|
|
82
|
+
|
|
83
|
+
## License
|
|
84
|
+
|
|
85
|
+
MIT. Source of truth is the OpenAPI spec; regeneration is part of
|
|
86
|
+
every spec change.
|
stadar-0.1.5/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# stadar — Python SDK for the Stadar esports API
|
|
2
|
+
|
|
3
|
+
Official Python client. Pip-installable. Type-hinted. Generated from
|
|
4
|
+
the public OpenAPI 3.1 spec — see
|
|
5
|
+
[stadar.net/docs/api](https://stadar.net/docs/api) for the full
|
|
6
|
+
reference and `clients/README.md` in the
|
|
7
|
+
[monorepo](https://github.com/macgraver/esports-api) for the codegen
|
|
8
|
+
posture.
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
pip install stadar
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Quick start
|
|
15
|
+
|
|
16
|
+
```python
|
|
17
|
+
from stadar import Client
|
|
18
|
+
|
|
19
|
+
# Reads $STADAR_API_KEY from env, with $STADAR_API_URL override.
|
|
20
|
+
client = Client.from_env()
|
|
21
|
+
|
|
22
|
+
# Or pass explicitly:
|
|
23
|
+
client = Client(api_key="esp_live_...", base_url="https://api.stadar.net")
|
|
24
|
+
|
|
25
|
+
matches = client.matches.list(game="cs2", status="live")
|
|
26
|
+
for m in matches.data:
|
|
27
|
+
print(m.id, m.team_a.slug, "vs", m.team_b.slug)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Sandbox
|
|
31
|
+
|
|
32
|
+
```python
|
|
33
|
+
# `esp_test_`-prefixed keys auto-route to the sandbox fixture set.
|
|
34
|
+
# `meta.sandbox: true` flags every response from the sandbox.
|
|
35
|
+
client = Client(api_key="esp_test_...")
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Webhooks
|
|
39
|
+
|
|
40
|
+
```python
|
|
41
|
+
from stadar.webhooks import verify_signature
|
|
42
|
+
|
|
43
|
+
@app.post("/stadar-webhook")
|
|
44
|
+
def handle(request):
|
|
45
|
+
body = request.body # raw bytes
|
|
46
|
+
signature = request.headers["X-Stadar-Signature"]
|
|
47
|
+
if not verify_signature(body, signature, secret="your-webhook-secret"):
|
|
48
|
+
return 401
|
|
49
|
+
event = parse_event(body)
|
|
50
|
+
# ... handle event
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
See [stadar.net/docs/webhooks](https://stadar.net/docs/webhooks) for
|
|
54
|
+
the signature verification recipe.
|
|
55
|
+
|
|
56
|
+
## License
|
|
57
|
+
|
|
58
|
+
MIT. Source of truth is the OpenAPI spec; regeneration is part of
|
|
59
|
+
every spec change.
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# clients/python — packaging manifest for `stadar-python`.
|
|
2
|
+
#
|
|
3
|
+
# Hand-written; protected from openapi-generator regeneration via
|
|
4
|
+
# clients/python/.openapi-generator-ignore.
|
|
5
|
+
#
|
|
6
|
+
# Published to PyPI as `stadar` (`pip install stadar`).
|
|
7
|
+
|
|
8
|
+
[build-system]
|
|
9
|
+
requires = ["setuptools>=68.0", "wheel"]
|
|
10
|
+
build-backend = "setuptools.build_meta"
|
|
11
|
+
|
|
12
|
+
[project]
|
|
13
|
+
name = "stadar"
|
|
14
|
+
version = "0.1.5"
|
|
15
|
+
description = "Official Python SDK for the Stadar esports API (stadar.net)"
|
|
16
|
+
readme = "README.md"
|
|
17
|
+
requires-python = ">=3.9"
|
|
18
|
+
license = { text = "MIT" }
|
|
19
|
+
authors = [
|
|
20
|
+
{ name = "Stadar", email = "hello@stadar.net" }
|
|
21
|
+
]
|
|
22
|
+
keywords = ["esports", "api", "stadar", "lol", "cs2", "dota", "valorant"]
|
|
23
|
+
classifiers = [
|
|
24
|
+
"Development Status :: 4 - Beta",
|
|
25
|
+
"Intended Audience :: Developers",
|
|
26
|
+
"License :: OSI Approved :: MIT License",
|
|
27
|
+
"Programming Language :: Python :: 3",
|
|
28
|
+
"Programming Language :: Python :: 3.9",
|
|
29
|
+
"Programming Language :: Python :: 3.10",
|
|
30
|
+
"Programming Language :: Python :: 3.11",
|
|
31
|
+
"Programming Language :: Python :: 3.12",
|
|
32
|
+
"Topic :: Software Development :: Libraries :: Python Modules"
|
|
33
|
+
]
|
|
34
|
+
dependencies = [
|
|
35
|
+
"urllib3 >= 1.25.3, < 3.0.0",
|
|
36
|
+
"python-dateutil >= 2.8.2",
|
|
37
|
+
"pydantic >= 2.0",
|
|
38
|
+
"typing-extensions >= 4.7.1"
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[project.urls]
|
|
42
|
+
Homepage = "https://stadar.net"
|
|
43
|
+
Documentation = "https://stadar.net/docs/api"
|
|
44
|
+
Repository = "https://github.com/macgraver/esports-api"
|
|
45
|
+
Changelog = "https://stadar.net/changelog"
|
|
46
|
+
|
|
47
|
+
[tool.setuptools.packages.find]
|
|
48
|
+
include = ["stadar*"]
|
|
49
|
+
exclude = ["test*", "docs*"]
|
stadar-0.1.5/setup.cfg
ADDED
|
@@ -0,0 +1,177 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
# flake8: noqa
|
|
4
|
+
|
|
5
|
+
"""
|
|
6
|
+
Stadar Esports Data API
|
|
7
|
+
|
|
8
|
+
Read-only, betting-friendly esports data across all major competitive titles. Flat-tier pricing (no per-game gates), Polar- billed subscriptions (Merchant of Record), sandbox keys for evaluation. See https://stadar.net for tier pricing. All endpoints under `/v1/...`. The version in `info.version` matches the URL prefix; non-breaking field additions ship in `/v1`, breaking changes get a `/v2`. We commit to 24 months of `/v1` support after `/v2` ships. Times are UTC end-to-end (RFC 3339). Localization is the client's problem. Cursors are opaque base64 strings; treat them as such.
|
|
9
|
+
|
|
10
|
+
The version of the OpenAPI document: v1
|
|
11
|
+
Contact: api@stadar.net
|
|
12
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
13
|
+
|
|
14
|
+
Do not edit the class manually.
|
|
15
|
+
""" # noqa: E501
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
__version__ = "0.1.0"
|
|
19
|
+
|
|
20
|
+
# Define package exports
|
|
21
|
+
__all__ = [
|
|
22
|
+
"AccountApi",
|
|
23
|
+
"AuthApi",
|
|
24
|
+
"BillingApi",
|
|
25
|
+
"GamesApi",
|
|
26
|
+
"LeaguesApi",
|
|
27
|
+
"MatchesApi",
|
|
28
|
+
"MetaApi",
|
|
29
|
+
"SeriesApi",
|
|
30
|
+
"TournamentsApi",
|
|
31
|
+
"WebhooksApi",
|
|
32
|
+
"ApiResponse",
|
|
33
|
+
"ApiClient",
|
|
34
|
+
"Configuration",
|
|
35
|
+
"OpenApiException",
|
|
36
|
+
"ApiTypeError",
|
|
37
|
+
"ApiValueError",
|
|
38
|
+
"ApiKeyError",
|
|
39
|
+
"ApiAttributeError",
|
|
40
|
+
"ApiException",
|
|
41
|
+
"APIKeySummary",
|
|
42
|
+
"AccountCreateKey201Response",
|
|
43
|
+
"AccountCreateKeyRequest",
|
|
44
|
+
"AccountListKeys200Response",
|
|
45
|
+
"AccountMeCapabilities200Response",
|
|
46
|
+
"AccountUsageRecent200Response",
|
|
47
|
+
"AuthMeResponse",
|
|
48
|
+
"AuthMeResponseData",
|
|
49
|
+
"CS2PreviewExtras",
|
|
50
|
+
"CS2PreviewExtrasMapVetoHistory",
|
|
51
|
+
"CS2PreviewExtrasMapWinRateValue",
|
|
52
|
+
"CapabilitySet",
|
|
53
|
+
"ErrorBody",
|
|
54
|
+
"ErrorEnvelope",
|
|
55
|
+
"Game",
|
|
56
|
+
"GameEnvelope",
|
|
57
|
+
"GamesListResponse",
|
|
58
|
+
"HeadToHead",
|
|
59
|
+
"Healthz200Response",
|
|
60
|
+
"Last5Result",
|
|
61
|
+
"League",
|
|
62
|
+
"LeagueEnvelope",
|
|
63
|
+
"LeagueSummary",
|
|
64
|
+
"LeaguesListResponse",
|
|
65
|
+
"Match",
|
|
66
|
+
"MatchEnvelope",
|
|
67
|
+
"MatchParticipant",
|
|
68
|
+
"MatchPreview",
|
|
69
|
+
"MatchPreviewEnvelope",
|
|
70
|
+
"MatchPreviewForm",
|
|
71
|
+
"MatchPreviewLast5",
|
|
72
|
+
"MatchesListResponse",
|
|
73
|
+
"Meta",
|
|
74
|
+
"Paging",
|
|
75
|
+
"RootVersion200Response",
|
|
76
|
+
"Series",
|
|
77
|
+
"SeriesEnvelope",
|
|
78
|
+
"SeriesListResponse",
|
|
79
|
+
"SeriesSummary",
|
|
80
|
+
"SeriesWinner",
|
|
81
|
+
"SignupRequest",
|
|
82
|
+
"SourceCredit",
|
|
83
|
+
"Stream",
|
|
84
|
+
"TeamForm",
|
|
85
|
+
"Tournament",
|
|
86
|
+
"TournamentEnvelope",
|
|
87
|
+
"TournamentPrizePool",
|
|
88
|
+
"TournamentSummary",
|
|
89
|
+
"TournamentsListResponse",
|
|
90
|
+
"UsageRow",
|
|
91
|
+
"UsageToday",
|
|
92
|
+
"WebhookSubscription",
|
|
93
|
+
"WebhookSubscriptionRequest",
|
|
94
|
+
"WebhooksCreate201Response",
|
|
95
|
+
"WebhooksList200Response",
|
|
96
|
+
]
|
|
97
|
+
|
|
98
|
+
# import apis into sdk package
|
|
99
|
+
from stadar.api.account_api import AccountApi as AccountApi
|
|
100
|
+
from stadar.api.auth_api import AuthApi as AuthApi
|
|
101
|
+
from stadar.api.billing_api import BillingApi as BillingApi
|
|
102
|
+
from stadar.api.games_api import GamesApi as GamesApi
|
|
103
|
+
from stadar.api.leagues_api import LeaguesApi as LeaguesApi
|
|
104
|
+
from stadar.api.matches_api import MatchesApi as MatchesApi
|
|
105
|
+
from stadar.api.meta_api import MetaApi as MetaApi
|
|
106
|
+
from stadar.api.series_api import SeriesApi as SeriesApi
|
|
107
|
+
from stadar.api.tournaments_api import TournamentsApi as TournamentsApi
|
|
108
|
+
from stadar.api.webhooks_api import WebhooksApi as WebhooksApi
|
|
109
|
+
|
|
110
|
+
# import ApiClient
|
|
111
|
+
from stadar.api_response import ApiResponse as ApiResponse
|
|
112
|
+
from stadar.api_client import ApiClient as ApiClient
|
|
113
|
+
from stadar.configuration import Configuration as Configuration
|
|
114
|
+
from stadar.exceptions import OpenApiException as OpenApiException
|
|
115
|
+
from stadar.exceptions import ApiTypeError as ApiTypeError
|
|
116
|
+
from stadar.exceptions import ApiValueError as ApiValueError
|
|
117
|
+
from stadar.exceptions import ApiKeyError as ApiKeyError
|
|
118
|
+
from stadar.exceptions import ApiAttributeError as ApiAttributeError
|
|
119
|
+
from stadar.exceptions import ApiException as ApiException
|
|
120
|
+
|
|
121
|
+
# import models into sdk package
|
|
122
|
+
from stadar.models.api_key_summary import APIKeySummary as APIKeySummary
|
|
123
|
+
from stadar.models.account_create_key201_response import AccountCreateKey201Response as AccountCreateKey201Response
|
|
124
|
+
from stadar.models.account_create_key_request import AccountCreateKeyRequest as AccountCreateKeyRequest
|
|
125
|
+
from stadar.models.account_list_keys200_response import AccountListKeys200Response as AccountListKeys200Response
|
|
126
|
+
from stadar.models.account_me_capabilities200_response import AccountMeCapabilities200Response as AccountMeCapabilities200Response
|
|
127
|
+
from stadar.models.account_usage_recent200_response import AccountUsageRecent200Response as AccountUsageRecent200Response
|
|
128
|
+
from stadar.models.auth_me_response import AuthMeResponse as AuthMeResponse
|
|
129
|
+
from stadar.models.auth_me_response_data import AuthMeResponseData as AuthMeResponseData
|
|
130
|
+
from stadar.models.cs2_preview_extras import CS2PreviewExtras as CS2PreviewExtras
|
|
131
|
+
from stadar.models.cs2_preview_extras_map_veto_history import CS2PreviewExtrasMapVetoHistory as CS2PreviewExtrasMapVetoHistory
|
|
132
|
+
from stadar.models.cs2_preview_extras_map_win_rate_value import CS2PreviewExtrasMapWinRateValue as CS2PreviewExtrasMapWinRateValue
|
|
133
|
+
from stadar.models.capability_set import CapabilitySet as CapabilitySet
|
|
134
|
+
from stadar.models.error_body import ErrorBody as ErrorBody
|
|
135
|
+
from stadar.models.error_envelope import ErrorEnvelope as ErrorEnvelope
|
|
136
|
+
from stadar.models.game import Game as Game
|
|
137
|
+
from stadar.models.game_envelope import GameEnvelope as GameEnvelope
|
|
138
|
+
from stadar.models.games_list_response import GamesListResponse as GamesListResponse
|
|
139
|
+
from stadar.models.head_to_head import HeadToHead as HeadToHead
|
|
140
|
+
from stadar.models.healthz200_response import Healthz200Response as Healthz200Response
|
|
141
|
+
from stadar.models.last5_result import Last5Result as Last5Result
|
|
142
|
+
from stadar.models.league import League as League
|
|
143
|
+
from stadar.models.league_envelope import LeagueEnvelope as LeagueEnvelope
|
|
144
|
+
from stadar.models.league_summary import LeagueSummary as LeagueSummary
|
|
145
|
+
from stadar.models.leagues_list_response import LeaguesListResponse as LeaguesListResponse
|
|
146
|
+
from stadar.models.match import Match as Match
|
|
147
|
+
from stadar.models.match_envelope import MatchEnvelope as MatchEnvelope
|
|
148
|
+
from stadar.models.match_participant import MatchParticipant as MatchParticipant
|
|
149
|
+
from stadar.models.match_preview import MatchPreview as MatchPreview
|
|
150
|
+
from stadar.models.match_preview_envelope import MatchPreviewEnvelope as MatchPreviewEnvelope
|
|
151
|
+
from stadar.models.match_preview_form import MatchPreviewForm as MatchPreviewForm
|
|
152
|
+
from stadar.models.match_preview_last5 import MatchPreviewLast5 as MatchPreviewLast5
|
|
153
|
+
from stadar.models.matches_list_response import MatchesListResponse as MatchesListResponse
|
|
154
|
+
from stadar.models.meta import Meta as Meta
|
|
155
|
+
from stadar.models.paging import Paging as Paging
|
|
156
|
+
from stadar.models.root_version200_response import RootVersion200Response as RootVersion200Response
|
|
157
|
+
from stadar.models.series import Series as Series
|
|
158
|
+
from stadar.models.series_envelope import SeriesEnvelope as SeriesEnvelope
|
|
159
|
+
from stadar.models.series_list_response import SeriesListResponse as SeriesListResponse
|
|
160
|
+
from stadar.models.series_summary import SeriesSummary as SeriesSummary
|
|
161
|
+
from stadar.models.series_winner import SeriesWinner as SeriesWinner
|
|
162
|
+
from stadar.models.signup_request import SignupRequest as SignupRequest
|
|
163
|
+
from stadar.models.source_credit import SourceCredit as SourceCredit
|
|
164
|
+
from stadar.models.stream import Stream as Stream
|
|
165
|
+
from stadar.models.team_form import TeamForm as TeamForm
|
|
166
|
+
from stadar.models.tournament import Tournament as Tournament
|
|
167
|
+
from stadar.models.tournament_envelope import TournamentEnvelope as TournamentEnvelope
|
|
168
|
+
from stadar.models.tournament_prize_pool import TournamentPrizePool as TournamentPrizePool
|
|
169
|
+
from stadar.models.tournament_summary import TournamentSummary as TournamentSummary
|
|
170
|
+
from stadar.models.tournaments_list_response import TournamentsListResponse as TournamentsListResponse
|
|
171
|
+
from stadar.models.usage_row import UsageRow as UsageRow
|
|
172
|
+
from stadar.models.usage_today import UsageToday as UsageToday
|
|
173
|
+
from stadar.models.webhook_subscription import WebhookSubscription as WebhookSubscription
|
|
174
|
+
from stadar.models.webhook_subscription_request import WebhookSubscriptionRequest as WebhookSubscriptionRequest
|
|
175
|
+
from stadar.models.webhooks_create201_response import WebhooksCreate201Response as WebhooksCreate201Response
|
|
176
|
+
from stadar.models.webhooks_list200_response import WebhooksList200Response as WebhooksList200Response
|
|
177
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# flake8: noqa
|
|
2
|
+
|
|
3
|
+
# import apis into api package
|
|
4
|
+
from stadar.api.account_api import AccountApi
|
|
5
|
+
from stadar.api.auth_api import AuthApi
|
|
6
|
+
from stadar.api.billing_api import BillingApi
|
|
7
|
+
from stadar.api.games_api import GamesApi
|
|
8
|
+
from stadar.api.leagues_api import LeaguesApi
|
|
9
|
+
from stadar.api.matches_api import MatchesApi
|
|
10
|
+
from stadar.api.meta_api import MetaApi
|
|
11
|
+
from stadar.api.series_api import SeriesApi
|
|
12
|
+
from stadar.api.tournaments_api import TournamentsApi
|
|
13
|
+
from stadar.api.webhooks_api import WebhooksApi
|
|
14
|
+
|