riotskillissue 0.1.0__py3-none-any.whl
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.
- riotskillissue/__init__.py +5 -0
- riotskillissue/api/__init__.py +0 -0
- riotskillissue/api/client_mixin.py +131 -0
- riotskillissue/api/endpoints/account.py +188 -0
- riotskillissue/api/endpoints/champion-mastery.py +143 -0
- riotskillissue/api/endpoints/champion.py +40 -0
- riotskillissue/api/endpoints/champion_mastery.py +154 -0
- riotskillissue/api/endpoints/clash.py +176 -0
- riotskillissue/api/endpoints/league-exp.py +54 -0
- riotskillissue/api/endpoints/league.py +226 -0
- riotskillissue/api/endpoints/league_exp.py +56 -0
- riotskillissue/api/endpoints/lol-challenges.py +197 -0
- riotskillissue/api/endpoints/lol-rso-match.py +124 -0
- riotskillissue/api/endpoints/lol-status.py +38 -0
- riotskillissue/api/endpoints/lol_challenges.py +214 -0
- riotskillissue/api/endpoints/lol_rso_match.py +132 -0
- riotskillissue/api/endpoints/lol_status.py +40 -0
- riotskillissue/api/endpoints/lor-deck.py +65 -0
- riotskillissue/api/endpoints/lor-inventory.py +38 -0
- riotskillissue/api/endpoints/lor-match.py +73 -0
- riotskillissue/api/endpoints/lor-ranked.py +38 -0
- riotskillissue/api/endpoints/lor-status.py +38 -0
- riotskillissue/api/endpoints/lor_deck.py +70 -0
- riotskillissue/api/endpoints/lor_inventory.py +40 -0
- riotskillissue/api/endpoints/lor_match.py +78 -0
- riotskillissue/api/endpoints/lor_ranked.py +40 -0
- riotskillissue/api/endpoints/lor_status.py +40 -0
- riotskillissue/api/endpoints/match.py +170 -0
- riotskillissue/api/endpoints/riftbound-content.py +42 -0
- riotskillissue/api/endpoints/riftbound_content.py +44 -0
- riotskillissue/api/endpoints/spectator-tft.py +42 -0
- riotskillissue/api/endpoints/spectator.py +44 -0
- riotskillissue/api/endpoints/spectator_tft.py +44 -0
- riotskillissue/api/endpoints/summoner.py +74 -0
- riotskillissue/api/endpoints/tft-league.py +240 -0
- riotskillissue/api/endpoints/tft-match.py +89 -0
- riotskillissue/api/endpoints/tft-status.py +38 -0
- riotskillissue/api/endpoints/tft-summoner.py +69 -0
- riotskillissue/api/endpoints/tft_league.py +260 -0
- riotskillissue/api/endpoints/tft_match.py +94 -0
- riotskillissue/api/endpoints/tft_status.py +40 -0
- riotskillissue/api/endpoints/tft_summoner.py +74 -0
- riotskillissue/api/endpoints/tournament-stub.py +162 -0
- riotskillissue/api/endpoints/tournament.py +243 -0
- riotskillissue/api/endpoints/tournament_stub.py +176 -0
- riotskillissue/api/endpoints/val-console-match.py +108 -0
- riotskillissue/api/endpoints/val-console-ranked.py +54 -0
- riotskillissue/api/endpoints/val-content.py +42 -0
- riotskillissue/api/endpoints/val-match.py +104 -0
- riotskillissue/api/endpoints/val-ranked.py +50 -0
- riotskillissue/api/endpoints/val-status.py +38 -0
- riotskillissue/api/endpoints/val_console_match.py +116 -0
- riotskillissue/api/endpoints/val_console_ranked.py +56 -0
- riotskillissue/api/endpoints/val_content.py +44 -0
- riotskillissue/api/endpoints/val_match.py +112 -0
- riotskillissue/api/endpoints/val_ranked.py +52 -0
- riotskillissue/api/endpoints/val_status.py +40 -0
- riotskillissue/api/models.py +4295 -0
- riotskillissue/auth.py +76 -0
- riotskillissue/cli.py +84 -0
- riotskillissue/core/cache.py +60 -0
- riotskillissue/core/client.py +47 -0
- riotskillissue/core/config.py +19 -0
- riotskillissue/core/http.py +144 -0
- riotskillissue/core/pagination.py +63 -0
- riotskillissue/core/ratelimit.py +185 -0
- riotskillissue/core/types.py +57 -0
- riotskillissue/core/utils.py +25 -0
- riotskillissue/static.py +71 -0
- riotskillissue/testing.py +46 -0
- riotskillissue-0.1.0.dist-info/METADATA +29 -0
- riotskillissue-0.1.0.dist-info/RECORD +75 -0
- riotskillissue-0.1.0.dist-info/WHEEL +4 -0
- riotskillissue-0.1.0.dist-info/entry_points.txt +2 -0
- riotskillissue-0.1.0.dist-info/licenses/LICENSE +21 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
from typing import NewType, Dict
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
from enum import StrEnum
|
|
5
|
+
except ImportError:
|
|
6
|
+
from enum import Enum
|
|
7
|
+
class StrEnum(str, Enum):
|
|
8
|
+
pass
|
|
9
|
+
|
|
10
|
+
class Region(StrEnum):
|
|
11
|
+
|
|
12
|
+
BR1 = "br1"
|
|
13
|
+
EUN1 = "eun1"
|
|
14
|
+
EUW1 = "euw1"
|
|
15
|
+
JP1 = "jp1"
|
|
16
|
+
KR = "kr"
|
|
17
|
+
LA1 = "la1"
|
|
18
|
+
LA2 = "la2"
|
|
19
|
+
NA1 = "na1"
|
|
20
|
+
OC1 = "oc1"
|
|
21
|
+
TR1 = "tr1"
|
|
22
|
+
RU = "ru"
|
|
23
|
+
PH2 = "ph2"
|
|
24
|
+
SG2 = "sg2"
|
|
25
|
+
TH2 = "th2"
|
|
26
|
+
TW2 = "tw2"
|
|
27
|
+
VN2 = "vn2"
|
|
28
|
+
|
|
29
|
+
class Platform(StrEnum):
|
|
30
|
+
AMERICAS = "americas"
|
|
31
|
+
ASIA = "asia"
|
|
32
|
+
EUROPE = "europe"
|
|
33
|
+
SEA = "sea"
|
|
34
|
+
|
|
35
|
+
# Helper to map Region -> Platform
|
|
36
|
+
REGION_TO_PLATFORM: Dict[Region, Platform] = {
|
|
37
|
+
Region.BR1: Platform.AMERICAS,
|
|
38
|
+
Region.NA1: Platform.AMERICAS,
|
|
39
|
+
Region.LA1: Platform.AMERICAS,
|
|
40
|
+
Region.LA2: Platform.AMERICAS,
|
|
41
|
+
Region.KR: Platform.ASIA,
|
|
42
|
+
Region.JP1: Platform.ASIA,
|
|
43
|
+
Region.EUN1: Platform.EUROPE,
|
|
44
|
+
Region.EUW1: Platform.EUROPE,
|
|
45
|
+
Region.TR1: Platform.EUROPE,
|
|
46
|
+
Region.RU: Platform.EUROPE,
|
|
47
|
+
Region.OC1: Platform.SEA,
|
|
48
|
+
Region.PH2: Platform.SEA,
|
|
49
|
+
Region.SG2: Platform.SEA,
|
|
50
|
+
Region.TH2: Platform.SEA,
|
|
51
|
+
Region.TW2: Platform.SEA,
|
|
52
|
+
Region.VN2: Platform.SEA,
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
Puuid = NewType("Puuid", str)
|
|
56
|
+
SummonerId = NewType("SummonerId", str)
|
|
57
|
+
AccountId = NewType("AccountId", str)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
from typing import TypeVar, Iterable, Awaitable, List
|
|
3
|
+
|
|
4
|
+
T = TypeVar("T")
|
|
5
|
+
|
|
6
|
+
async def gather_limited(tasks: Iterable[Awaitable[T]], limit: int = 10) -> List[T]:
|
|
7
|
+
"""
|
|
8
|
+
Run tasks concurrently with a limit on the number of active tasks.
|
|
9
|
+
Useful for batching requests without overwhelming the local event loop or
|
|
10
|
+
exceeding simplified concurrency limits.
|
|
11
|
+
|
|
12
|
+
Args:
|
|
13
|
+
tasks: Iterable of awaitables.
|
|
14
|
+
limit: Max concurrent tasks.
|
|
15
|
+
|
|
16
|
+
Returns:
|
|
17
|
+
List of results in order.
|
|
18
|
+
"""
|
|
19
|
+
sem = asyncio.Semaphore(limit)
|
|
20
|
+
|
|
21
|
+
async def run_with_sem(task: Awaitable[T]) -> T:
|
|
22
|
+
async with sem:
|
|
23
|
+
return await task
|
|
24
|
+
|
|
25
|
+
return await asyncio.gather(*(run_with_sem(t) for t in tasks))
|
riotskillissue/static.py
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
from typing import Optional, Dict, Any, List
|
|
2
|
+
import httpx
|
|
3
|
+
from .core.cache import AbstractCache, NoOpCache
|
|
4
|
+
|
|
5
|
+
class DataDragonClient:
|
|
6
|
+
"""
|
|
7
|
+
Client for Riot's Data Dragon static data service.
|
|
8
|
+
Automatically handles versioning and caching.
|
|
9
|
+
"""
|
|
10
|
+
params = {} # No auth needed
|
|
11
|
+
|
|
12
|
+
def __init__(self, cache: Optional[AbstractCache] = None):
|
|
13
|
+
self.base_url = "https://ddragon.leagueoflegends.com"
|
|
14
|
+
self.http = httpx.AsyncClient()
|
|
15
|
+
self.cache = cache or NoOpCache()
|
|
16
|
+
self.version: Optional[str] = None
|
|
17
|
+
|
|
18
|
+
async def get_latest_version(self) -> str:
|
|
19
|
+
"""Fetch the latest version of Data Dragon."""
|
|
20
|
+
if self.version:
|
|
21
|
+
return self.version
|
|
22
|
+
|
|
23
|
+
cache_key = "ddragon:version"
|
|
24
|
+
cached = await self.cache.get(cache_key)
|
|
25
|
+
if cached:
|
|
26
|
+
self.version = cached
|
|
27
|
+
return cached
|
|
28
|
+
|
|
29
|
+
resp = await self.http.get(f"{self.base_url}/api/versions.json")
|
|
30
|
+
versions = resp.json()
|
|
31
|
+
latest = versions[0]
|
|
32
|
+
|
|
33
|
+
await self.cache.set(cache_key, latest, ttl=3600) # Cache for 1 hour
|
|
34
|
+
self.version = latest
|
|
35
|
+
return latest
|
|
36
|
+
|
|
37
|
+
async def get_champion(self, champion_key: int) -> Optional[Dict[str, Any]]:
|
|
38
|
+
"""
|
|
39
|
+
Get champion data by ID (key).
|
|
40
|
+
e.g. 1 -> Annie
|
|
41
|
+
"""
|
|
42
|
+
version = await self.get_latest_version()
|
|
43
|
+
|
|
44
|
+
# We need to fetch the full champion list to map ID -> Data
|
|
45
|
+
# Ideally we cache this heavy object
|
|
46
|
+
cache_key = f"ddragon:{version}:champions"
|
|
47
|
+
|
|
48
|
+
champions_map = await self.cache.get(cache_key)
|
|
49
|
+
if not champions_map:
|
|
50
|
+
resp = await self.http.get(f"{self.base_url}/cdn/{version}/data/en_US/champion.json")
|
|
51
|
+
data = resp.json()["data"]
|
|
52
|
+
|
|
53
|
+
# Map by "key" (ID) which is string in JSON but usually treated as int
|
|
54
|
+
champions_map = {int(c["key"]): c for c in data.values()}
|
|
55
|
+
await self.cache.set(cache_key, champions_map, ttl=86400) # Cache for 24h
|
|
56
|
+
|
|
57
|
+
return champions_map.get(champion_key)
|
|
58
|
+
|
|
59
|
+
async def get_item(self, item_id: int) -> Optional[Dict[str, Any]]:
|
|
60
|
+
"""Get item data by ID."""
|
|
61
|
+
version = await self.get_latest_version()
|
|
62
|
+
cache_key = f"ddragon:{version}:items"
|
|
63
|
+
|
|
64
|
+
items_map = await self.cache.get(cache_key)
|
|
65
|
+
if not items_map:
|
|
66
|
+
resp = await self.http.get(f"{self.base_url}/cdn/{version}/data/en_US/item.json")
|
|
67
|
+
data = resp.json()["data"]
|
|
68
|
+
items_map = {int(k): v for k, v in data.items()}
|
|
69
|
+
await self.cache.set(cache_key, items_map, ttl=86400)
|
|
70
|
+
|
|
71
|
+
return items_map.get(item_id)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
from contextlib import asynccontextmanager
|
|
2
|
+
import respx
|
|
3
|
+
from httpx import Response
|
|
4
|
+
from typing import Dict, Any, Union, Optional
|
|
5
|
+
from .core.client import RiotClient
|
|
6
|
+
|
|
7
|
+
class RiotMock:
|
|
8
|
+
"""
|
|
9
|
+
Mock server utility for testing Riot API integrations.
|
|
10
|
+
Wraps respx for easier Riot-specific mocking.
|
|
11
|
+
"""
|
|
12
|
+
def __init__(self):
|
|
13
|
+
self.mocker = respx.mock
|
|
14
|
+
|
|
15
|
+
@asynccontextmanager
|
|
16
|
+
async def configure(self, base_url: str = "https://na1.api.riotgames.com"):
|
|
17
|
+
"""
|
|
18
|
+
Context manager to mock API calls.
|
|
19
|
+
|
|
20
|
+
Usage:
|
|
21
|
+
mock = RiotMock()
|
|
22
|
+
async with mock.configure() as m:
|
|
23
|
+
m.get("/lol/summoner/v4/summoners/by-name/Faker").respond(200, json={...})
|
|
24
|
+
# run client code
|
|
25
|
+
"""
|
|
26
|
+
async with self.mocker(base_url=base_url) as mock:
|
|
27
|
+
yield mock
|
|
28
|
+
|
|
29
|
+
# Helpers for common mocks
|
|
30
|
+
@staticmethod
|
|
31
|
+
def mock_summoner(mock: respx.MockRouter, puuid: str, region: str = "na1", level: int = 30):
|
|
32
|
+
"""Helper to mock a summoner response."""
|
|
33
|
+
return mock.get(f"/lol/summoner/v4/summoners/by-puuid/{puuid}").respond(
|
|
34
|
+
200,
|
|
35
|
+
json={
|
|
36
|
+
"id": "summ_id",
|
|
37
|
+
"accountId": "acc_id",
|
|
38
|
+
"puuid": puuid,
|
|
39
|
+
"name": "MockSummoner",
|
|
40
|
+
"profileIconId": 1,
|
|
41
|
+
"revisionDate": 1600000000000,
|
|
42
|
+
"summonerLevel": level
|
|
43
|
+
}
|
|
44
|
+
)
|
|
45
|
+
|
|
46
|
+
__all__ = ["RiotMock"]
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: riotskillissue
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Production-ready, auto-updating Riot API wrapper.
|
|
5
|
+
Author-email: Antigravity <bot@example.com>
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Classifier: Development Status :: 4 - Beta
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
|
+
Requires-Dist: frozendict>=2.4.0
|
|
12
|
+
Requires-Dist: httpx>=0.27.0
|
|
13
|
+
Requires-Dist: jinja2>=3.1.0
|
|
14
|
+
Requires-Dist: msgspec>=0.18.0
|
|
15
|
+
Requires-Dist: pydantic>=2.7.0
|
|
16
|
+
Requires-Dist: redis>=5.0.0
|
|
17
|
+
Requires-Dist: tenacity>=8.2.0
|
|
18
|
+
Provides-Extra: dev
|
|
19
|
+
Requires-Dist: deepdiff>=6.0.0; extra == 'dev'
|
|
20
|
+
Requires-Dist: mypy>=1.10.0; extra == 'dev'
|
|
21
|
+
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
|
|
22
|
+
Requires-Dist: pytest-cov>=5.0.0; extra == 'dev'
|
|
23
|
+
Requires-Dist: pytest>=8.0.0; extra == 'dev'
|
|
24
|
+
Requires-Dist: respx>=0.21.0; extra == 'dev'
|
|
25
|
+
Requires-Dist: rich>=13.7.0; extra == 'dev'
|
|
26
|
+
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
27
|
+
Requires-Dist: typer>=0.12.0; extra == 'dev'
|
|
28
|
+
Requires-Dist: types-redis; extra == 'dev'
|
|
29
|
+
Requires-Dist: types-requests; extra == 'dev'
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
riotskillissue/__init__.py,sha256=CA0b9B2kxezDDPJcxWlXQco6kLn4LfP0c0CxREf6I14,213
|
|
2
|
+
riotskillissue/auth.py,sha256=K2Soa6sm7RsGxshfGaJPAPVyz4CnSPGR66Xeid0R4aY,2247
|
|
3
|
+
riotskillissue/cli.py,sha256=fsZKP81jKYgH1SKQGl5eE0NWpt84TGCT_SktE-ryHBM,3774
|
|
4
|
+
riotskillissue/static.py,sha256=dVwuiKe85hWRrRpS0kfWEQZChioRVyMKlGjWD3mGfvQ,2707
|
|
5
|
+
riotskillissue/testing.py,sha256=idkJJr8yI_xzufpvRYkB0ovdpFXGXFsEFHNcJj32e_o,1493
|
|
6
|
+
riotskillissue/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
riotskillissue/api/client_mixin.py,sha256=_WuGSuKL7qTq6oOutXhn7bK0qPtDMLGT7gyybkWaY9U,4029
|
|
8
|
+
riotskillissue/api/models.py,sha256=yosETBytjNySKckSnLGZLQaif4hw-fzZM3xxAMYnAC0,122391
|
|
9
|
+
riotskillissue/api/endpoints/account.py,sha256=6Gq106k7kTnnsMLpLRYp6-4DWsKSUeCXFAqB1DruTaA,4693
|
|
10
|
+
riotskillissue/api/endpoints/champion-mastery.py,sha256=VyO-hFuK5CkLpE9eUOP_zp4WYboomYacsACZvJGTMq8,3968
|
|
11
|
+
riotskillissue/api/endpoints/champion.py,sha256=8Ls54phsA_S1LT_Z8bLVrBiFLa6PdM6vzUQuQ7UxNao,1061
|
|
12
|
+
riotskillissue/api/endpoints/champion_mastery.py,sha256=nSLRYA4QfqI6_dNtPMZl4tLUJb4_BUPcc83wIGQPto0,4416
|
|
13
|
+
riotskillissue/api/endpoints/clash.py,sha256=ujVhgAJRA9FCEvhMjGSGLbydDeWZlnaYiNH1II0tLWk,4340
|
|
14
|
+
riotskillissue/api/endpoints/league-exp.py,sha256=5aq317iy1WVYaqWSs3r_NV4jBAely8K5MYI5s-9iLzM,1312
|
|
15
|
+
riotskillissue/api/endpoints/league.py,sha256=may-2Yek1uNgci03PjKKxNdVoakMGLQRtCC462dEfYE,5783
|
|
16
|
+
riotskillissue/api/endpoints/league_exp.py,sha256=QSrNo_ZP4HTs0aPKvc3fgVBvHgpGnGH4EJkbnJ0xTC8,1411
|
|
17
|
+
riotskillissue/api/endpoints/lol-challenges.py,sha256=UkkDAOcfQKGLf6fCVcJjnPsVloKF_yOm8k5FHbrZnpg,5167
|
|
18
|
+
riotskillissue/api/endpoints/lol-rso-match.py,sha256=0CmAwiPdz1418aY_8xOkrND7jYgPcl-OjCvfUXwrEY0,2851
|
|
19
|
+
riotskillissue/api/endpoints/lol-status.py,sha256=KcNsWxTAdu2Sf1kiqil9rThFCVD5KWirrkbgCxPG2Ds,930
|
|
20
|
+
riotskillissue/api/endpoints/lol_challenges.py,sha256=1XhmnSfL9AHddx7Xl_bPnETUVPmFZfaULaT2OAQ9eIo,5883
|
|
21
|
+
riotskillissue/api/endpoints/lol_rso_match.py,sha256=1f4E--TFgNoSGnbkGkEHagPVIVCtMTF7T-aD8h4s1mo,3142
|
|
22
|
+
riotskillissue/api/endpoints/lol_status.py,sha256=MT9y67CkPwBJu1pAVjNIJsrm-9P2OUta_BDHRVqZQ18,1024
|
|
23
|
+
riotskillissue/api/endpoints/lor-deck.py,sha256=T2q87NFjcfOMWM41UCUdHSnGLS-vcuEtfQfkkEBZxt4,1492
|
|
24
|
+
riotskillissue/api/endpoints/lor-inventory.py,sha256=K3yhPmBZNYRwseJk0nGs1aP91xgQjwfidIV5z3pbH5Q,921
|
|
25
|
+
riotskillissue/api/endpoints/lor-match.py,sha256=4KN2dCyOYO1gmub0uzM2pNdJoRNulkoHWUJ2Z1apFt8,1713
|
|
26
|
+
riotskillissue/api/endpoints/lor-ranked.py,sha256=qJYaXZJi9jM3MUtc6N1QX8xlnWYmkq1p8cUrlR27cjA,906
|
|
27
|
+
riotskillissue/api/endpoints/lor-status.py,sha256=DpQW7kb2Cl3UUBfmQoECoS8s9FFqjg8O-ZQaGzrjEaQ,933
|
|
28
|
+
riotskillissue/api/endpoints/lor_deck.py,sha256=0jGhps1aNhDr2IN6VxwsstQez6oBJj84lxR7cI--sx8,1675
|
|
29
|
+
riotskillissue/api/endpoints/lor_inventory.py,sha256=YXLWO9eS2_6s2OjiaqBZmHVLOIY5XqdEM97UjkInDxM,1016
|
|
30
|
+
riotskillissue/api/endpoints/lor_match.py,sha256=0X9jqVwoVdKSWoCflkexU2Rd9DZuTK_4kQvOPMjQuUs,1894
|
|
31
|
+
riotskillissue/api/endpoints/lor_ranked.py,sha256=GLlfkFavyZK8T5r3Q1UKW1vugAkXEx9H2IUF69nphlM,999
|
|
32
|
+
riotskillissue/api/endpoints/lor_status.py,sha256=TCN8RLYW1W6bCuyIxy-nAaHEODwxWZEAQVFlVwY1KHM,1027
|
|
33
|
+
riotskillissue/api/endpoints/match.py,sha256=1GkY9NDtizQk9FkzoPIE7-dfkr49D_kl6W3XNUh6vQA,4027
|
|
34
|
+
riotskillissue/api/endpoints/riftbound-content.py,sha256=EPJv5byGlk0HxGOqO9eFT6yxKyeLtYv8YDBCU1x00KY,993
|
|
35
|
+
riotskillissue/api/endpoints/riftbound_content.py,sha256=AedcAu9oaa7j7wsQlIZS92qR00rgUUb-sncQtlVceWU,1098
|
|
36
|
+
riotskillissue/api/endpoints/spectator-tft.py,sha256=Qp8K-mbupK5qLRXQRP7H_STYSetbc5kMG1KAjrX9_5s,1104
|
|
37
|
+
riotskillissue/api/endpoints/spectator.py,sha256=jv5s8JvPAgNP8__WlrUIcDuCWQTpL57Yy9aMPrq5J8k,1188
|
|
38
|
+
riotskillissue/api/endpoints/spectator_tft.py,sha256=ldMICn5XMMzTv-szfn8eJSMrCTxnGSOOQkfMbYIgHSg,1201
|
|
39
|
+
riotskillissue/api/endpoints/summoner.py,sha256=vr90aMPAxeAUCnTTLDf_WmtV8ZYHxRyTvpupXJyouPs,1863
|
|
40
|
+
riotskillissue/api/endpoints/tft-league.py,sha256=saz0GCpDV9u05rzdZk1SvT7ZHqDtakXSH9U8PFB1NU8,5646
|
|
41
|
+
riotskillissue/api/endpoints/tft-match.py,sha256=cnDj4G4OkjSK15ntxdIzaxLjE3fdamzpabqspps6MwE,2047
|
|
42
|
+
riotskillissue/api/endpoints/tft-status.py,sha256=Tz4mGgKF45ba4jycHxATjA69CZavywiqYR5uq4yeL-I,930
|
|
43
|
+
riotskillissue/api/endpoints/tft-summoner.py,sha256=LP_g0PDTIFrMMAtym0Ho7ANrx8A82C1B8BvcM-Zpems,1678
|
|
44
|
+
riotskillissue/api/endpoints/tft_league.py,sha256=EgLvJxA-zUZJe2ZOvxAC2WWTeEmK2lhiyqgTlQeCEbQ,6465
|
|
45
|
+
riotskillissue/api/endpoints/tft_match.py,sha256=DUL5IOBXKhN8fDGu4jNj-o6j0fCf8ekTgstYWERJiT4,2228
|
|
46
|
+
riotskillissue/api/endpoints/tft_status.py,sha256=9lxIZDC9PWFDeCLvWtkpTokbBZJg1QM1fJpyHd0HKn8,1024
|
|
47
|
+
riotskillissue/api/endpoints/tft_summoner.py,sha256=0z_2cE1BvEmDv_eMFg161_z0BNSysNwSh8VCUG1Sy8M,1883
|
|
48
|
+
riotskillissue/api/endpoints/tournament-stub.py,sha256=T0bvyWaFvtA-rZ9FY6lgIYAwMokLG48OEK50nfvWa0A,4044
|
|
49
|
+
riotskillissue/api/endpoints/tournament.py,sha256=ZEmv_pvK-uE8tfJshKVMnsL6PijWsRZgidzmFF3Ed1g,6127
|
|
50
|
+
riotskillissue/api/endpoints/tournament_stub.py,sha256=pWuhRbNWAZxjnOnabCtyPrg-C7JmAYkLtK672fIuHlg,4563
|
|
51
|
+
riotskillissue/api/endpoints/val-console-match.py,sha256=285-76hj1EI8PNAq4lOqEFzJL3AxgMB3e8W_EuKyoUQ,2609
|
|
52
|
+
riotskillissue/api/endpoints/val-console-ranked.py,sha256=IDKxvb95NU5x7Wjh-mUaVpC_UEX8QS3YHU6hA_AlwfE,1310
|
|
53
|
+
riotskillissue/api/endpoints/val-content.py,sha256=4MPiPnbk0iOK98HPinK1hd5jLUZ6GXi08B0QtEVioQ4,986
|
|
54
|
+
riotskillissue/api/endpoints/val-match.py,sha256=oPf_atPXSxGHz3C4hFBrRWtdjmAiM3cVtsTaoarVc80,2444
|
|
55
|
+
riotskillissue/api/endpoints/val-ranked.py,sha256=kRV4VnmHYgvWGxx_G-z4wxi-lso8fQiomq5J14fL5mI,1195
|
|
56
|
+
riotskillissue/api/endpoints/val-status.py,sha256=opLFHomkh0tvVEnuxVDCpha4DFJOBnhROqGnJA2ivzk,921
|
|
57
|
+
riotskillissue/api/endpoints/val_console_match.py,sha256=Q5XtFeRKQXdsW8CFNCgGAvXOJk4Pb08ZveVlLrcUq_w,2953
|
|
58
|
+
riotskillissue/api/endpoints/val_console_ranked.py,sha256=Adq5k8g02Q7Sjy53SHJJErTCLQrcCW5taR31hAbnhfk,1411
|
|
59
|
+
riotskillissue/api/endpoints/val_content.py,sha256=B2F92j7rLrbp2n3s4J0s3eEzdQQbE1jXILCsD8PncSU,1076
|
|
60
|
+
riotskillissue/api/endpoints/val_match.py,sha256=6uW3T9xvIW8pFFn7iVcMc5O-8pp9_aEkNvTak2dKVXw,2764
|
|
61
|
+
riotskillissue/api/endpoints/val_ranked.py,sha256=bezU6oXHx_b-Ei93LoIeWcB71i9EecOBsMMyi3ViPZM,1288
|
|
62
|
+
riotskillissue/api/endpoints/val_status.py,sha256=-EfUCCPjOqLSY1XATTfPM4IflcvaTTzxxzKMixquCQ8,1015
|
|
63
|
+
riotskillissue/core/cache.py,sha256=5fVqaJAGUdwKXNJXiZTiIPWu3RroOvMDSLZiiRFF1DY,1672
|
|
64
|
+
riotskillissue/core/client.py,sha256=FUJohr0gKzpkOqjUXS55rNOKIEo4hV0pH6uamW8h77s,1563
|
|
65
|
+
riotskillissue/core/config.py,sha256=uHJkowiNkgYBD4kV0rg8oTSZX-DzdH-n7FG1UHQFDWM,542
|
|
66
|
+
riotskillissue/core/http.py,sha256=UbXHVUFAFhWGf2_zxcqI7BvsdkYdC6cwQcDOVUYe-Cc,5842
|
|
67
|
+
riotskillissue/core/pagination.py,sha256=OEiKwBCUt3YhmEQVNujze7k7E9D2cH582NUfOkoQMIk,2058
|
|
68
|
+
riotskillissue/core/ratelimit.py,sha256=moCm8ztJWt0tLF6gyJraC68cM8g-Y8KGWvOeEAopkqg,7510
|
|
69
|
+
riotskillissue/core/types.py,sha256=PUdqAcvraAGQNJHG2jyy0txHM-2_QHXc1Hbp0IMTWc8,1254
|
|
70
|
+
riotskillissue/core/utils.py,sha256=THNMRbHegLDtHJd0QJ9n4c9T8Jm2l0cQBf0uRAjiC7k,742
|
|
71
|
+
riotskillissue-0.1.0.dist-info/METADATA,sha256=PnZrK1tWzSR0rUvsHIStgC12dMOs1pVHL84rCD0lU4Q,1081
|
|
72
|
+
riotskillissue-0.1.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
73
|
+
riotskillissue-0.1.0.dist-info/entry_points.txt,sha256=UGwPyhTjcdeyXCvSOAXUzCCRGT2QFV0tbIdjjoFY5rw,63
|
|
74
|
+
riotskillissue-0.1.0.dist-info/licenses/LICENSE,sha256=pHOOfZKWeoeh33UTYa00xZsOLpdmLkNkz1zaGrF2JYw,1063
|
|
75
|
+
riotskillissue-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Demoen
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|