mirror of
https://github.com/deesiigneer/pyspapi.git
synced 2026-04-20 12:35:26 +00:00
v3 asyncio/aiohttp alpha
This commit is contained in:
21
examples/get_user and get_users.py
Normal file
21
examples/get_user and get_users.py
Normal file
@@ -0,0 +1,21 @@
|
||||
import pyspapi
|
||||
import asyncio
|
||||
|
||||
|
||||
api = pyspapi.API(card_id='card_id', token='token')
|
||||
|
||||
|
||||
async def main():
|
||||
user = await api.get_user(264329096920563714)
|
||||
print(user)
|
||||
print(user.access)
|
||||
# У API есть лимиты, каждый user = 1 запрос, учитывайте это при использовании get_users
|
||||
# https://spworlds.readthedocs.io/ru/latest/index.html#id3
|
||||
users = await api.get_users([262632724928397312, 264329096920563714])
|
||||
for user in users:
|
||||
print(user)
|
||||
if user is not None:
|
||||
print(user.access)
|
||||
|
||||
loop = asyncio.get_event_loop()
|
||||
loop.run_until_complete(main())
|
||||
Reference in New Issue
Block a user