mirror of
https://github.com/PaiGramTeam/EnkaNetwork.py.git
synced 2024-11-16 03:45:28 +00:00
fc4c09ae0b
remove PyPEP8 E501 example `asyncio.loop` to `asyncio.run` examples: pass all
2.1 KiB
2.1 KiB
Enka Network Python
EN | TH
ไลบารีสำหรับดึงข้อมูล JSON จากเว็บ https://enka.network
💾 วิธีการติดตั้ง
pip install enkanetwork.py
✨ วิธีใช้
import asyncio
from enkanetwork import EnkaNetworkAPI
client = EnkaNetworkAPI()
async def main():
async with client:
data = await client.fetch_user(843715177)
print("=== Player Info ===")
print(f"Nickname: {data.player.nickname}")
print(f"Level: {data.player.level}")
print(f"Icon: {data.player.icon.url}")
print(f"Signature: {data.player.signature}")
print(f"Achievement: {data.player.achievement}")
print(f"Abyss floor: {data.player.abyss_floor} - {data.player.abyss_room}")
print(f"Cache timeout: {data.ttl}")
asyncio.run(main())
=== Player Info ===
Nickname: mrwan2546
Level: 55
Icon: https://enka.network/ui/UI_AvatarIcon_Hutao.png
Signature: ?
Achievement: 395
Abyss floor: 8 - 3
Cache timeout: 300
หากต้องการดูข้อมูล API เพิ่มเติม ไปดูที่ EnkaNetwork API Docs
🌎 ภาษาที่รองรับ
ภาษา | รหัสโค๊ต |
---|---|
English | en |
Россия | ru |
Tiếng Việt | vi |
ไทย | th |
português | pt |
한국어 | kr |
日本語 | jp |
中文 | zh |
Indonesian | id |
français | fr |
español | es |
deutsch | de |
Taiwan | cht |
Chinese | chs |
👀 ตัวอย่างการใช้งาน
ดูได้ที่โฟเดอร์ example