Compare commits
7 Commits
93fe1beb2f
...
latest
| Author | SHA1 | Date | |
|---|---|---|---|
| d80d97bb9b | |||
| 4f78653596 | |||
| 19b8d7fb49 | |||
| 0e83d8eaa8 | |||
| 818affc74b | |||
| 645f7029ad | |||
| 63a874b94c |
@ -37,9 +37,10 @@ import asyncio
|
|||||||
from oxidetwitch.api import TwitchAPIClient
|
from oxidetwitch.api import TwitchAPIClient
|
||||||
|
|
||||||
async def main():
|
async def main():
|
||||||
async with TwitchClient(
|
async with TwitchAPIClient(
|
||||||
client_id="your_id",
|
client_id="your_id",
|
||||||
client_secret="your_client_secret",
|
client_secret="your_client_secret",
|
||||||
|
redirect_uri="https://example.com",
|
||||||
redis_url="redis://localhost:6379",
|
redis_url="redis://localhost:6379",
|
||||||
) as twitch:
|
) as twitch:
|
||||||
# Get user data (automatically cached if configured)
|
# Get user data (automatically cached if configured)
|
||||||
@ -57,11 +58,10 @@ If you are polling 100+ streams, OxideTwitch spaces out the requests using the *
|
|||||||
|
|
||||||
```python
|
```python
|
||||||
async def poll_streams(channels):
|
async def poll_streams(channels):
|
||||||
async with TwitchClient(...) as twitch:
|
async with TwitchAPIClient(...) as twitch:
|
||||||
# These will be executed as fast as the rate limiter allows
|
# These will be executed as fast as the rate limiter allows
|
||||||
tasks = [twitch.get_stream(user_login=name) for name in channels]
|
tasks = [twitch.get_streams(..., user_login=name) for name in channels]
|
||||||
streams = await asyncio.gather(*tasks)
|
streams = await asyncio.gather(*tasks)
|
||||||
return [s for s in streams if s.is_live]
|
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "oxidetwitch"
|
name = "oxidetwitch"
|
||||||
version = "1.2.0"
|
version = "1.2.3"
|
||||||
description = "Client for Twitch API"
|
description = "Client for Twitch API"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]
|
authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }]
|
||||||
|
|||||||
@ -23,7 +23,7 @@ class TwitchAPIClient(OxideHTTP):
|
|||||||
redis_url: str | None = None,
|
redis_url: str | None = None,
|
||||||
proxy_url: str | None = None,
|
proxy_url: str | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
self.base_uri = 'https://api.twitch.tv/helix'
|
self.base_uri = 'https://api.twitch.tv/helix/'
|
||||||
self.client_id = client_id
|
self.client_id = client_id
|
||||||
self.client_secret = client_secret
|
self.client_secret = client_secret
|
||||||
self.redirect_uri = redirect_uri
|
self.redirect_uri = redirect_uri
|
||||||
@ -1470,12 +1470,14 @@ class TwitchAPIClient(OxideHTTP):
|
|||||||
'/eventsub/subscriptions',
|
'/eventsub/subscriptions',
|
||||||
s.EventsubBaseSubscriptions,
|
s.EventsubBaseSubscriptions,
|
||||||
self._auth(access_token),
|
self._auth(access_token),
|
||||||
{
|
self.clean_dict(
|
||||||
'status': status,
|
{
|
||||||
'type': sub_type,
|
'status': status,
|
||||||
'user_id': user_id,
|
'type': sub_type,
|
||||||
'subscription_id': subscription_id,
|
'user_id': user_id,
|
||||||
},
|
'subscription_id': subscription_id,
|
||||||
|
}
|
||||||
|
),
|
||||||
cache_ttl,
|
cache_ttl,
|
||||||
):
|
):
|
||||||
for item in data.data:
|
for item in data.data:
|
||||||
|
|||||||
@ -16,7 +16,7 @@ class TwitchAuthClient(OxideHTTP):
|
|||||||
redis_url: str | None = None,
|
redis_url: str | None = None,
|
||||||
proxy_url: str | None = None,
|
proxy_url: str | None = None,
|
||||||
) -> None:
|
) -> None:
|
||||||
self.base_uri = 'https://id.twitch.tv/oauth2'
|
self.base_uri = 'https://id.twitch.tv/oauth2/'
|
||||||
self.client_id = client_id
|
self.client_id = client_id
|
||||||
self.client_secret = client_secret
|
self.client_secret = client_secret
|
||||||
self.redirect_uri = redirect_uri
|
self.redirect_uri = redirect_uri
|
||||||
@ -62,7 +62,7 @@ class TwitchAuthClient(OxideHTTP):
|
|||||||
|
|
||||||
match req.status_code:
|
match req.status_code:
|
||||||
case st.OK:
|
case st.OK:
|
||||||
return s.AppAccessToken.model_validate(req.json())
|
return s.AppAccessToken.model_validate(await req.json())
|
||||||
|
|
||||||
case _:
|
case _:
|
||||||
raise s.InternalError(req.status_code, 'Internal Server Error')
|
raise s.InternalError(req.status_code, 'Internal Server Error')
|
||||||
@ -81,7 +81,7 @@ class TwitchAuthClient(OxideHTTP):
|
|||||||
|
|
||||||
match req.status_code:
|
match req.status_code:
|
||||||
case st.OK:
|
case st.OK:
|
||||||
return s.UserAccessToken.model_validate(req.json())
|
return s.UserAccessToken.model_validate(await req.json())
|
||||||
|
|
||||||
case st.BAD_REQUEST:
|
case st.BAD_REQUEST:
|
||||||
return None
|
return None
|
||||||
@ -99,7 +99,7 @@ class TwitchAuthClient(OxideHTTP):
|
|||||||
|
|
||||||
match req.status_code:
|
match req.status_code:
|
||||||
case st.OK:
|
case st.OK:
|
||||||
return s.AccessTokenValidation.model_validate(req.json())
|
return s.AccessTokenValidation.model_validate(await req.json())
|
||||||
|
|
||||||
case st.UNAUTHORIZED:
|
case st.UNAUTHORIZED:
|
||||||
return None
|
return None
|
||||||
@ -122,7 +122,7 @@ class TwitchAuthClient(OxideHTTP):
|
|||||||
|
|
||||||
match req.status_code:
|
match req.status_code:
|
||||||
case st.OK:
|
case st.OK:
|
||||||
return s.UserAccessToken.model_validate(req.json())
|
return s.UserAccessToken.model_validate(await req.json())
|
||||||
|
|
||||||
case st.BAD_REQUEST:
|
case st.BAD_REQUEST:
|
||||||
return None
|
return None
|
||||||
|
|||||||
Reference in New Issue
Block a user