Files
profile-system/tests/test.py
T
2026-07-01 17:37:22 +03:00

11 lines
265 B
Python

import aiohttp
import asyncio
async def main():
async with aiohttp.ClientSession(trust_env=True) as session:
async with session.get("https://discord.com/api/v10") as r:
print(r.status)
print(await r.text())
asyncio.run(main())