On branch DiscordProfile

Initial commit
This commit is contained in:
EG
2026-07-01 15:15:07 +03:00
commit d4bf750c9e
3125 changed files with 601334 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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())