mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 12:02:17 +00:00
30 lines
670 B
Markdown
30 lines
670 B
Markdown
# Semi-Intransient Matrix Network
|
|
|
|
Modern API wrapper for Genshin Impact & Honkai: Star Rail built on asyncio and pydantic.
|
|
|
|
## Requirements
|
|
|
|
- Python 3.8+
|
|
- httpx
|
|
- Pydantic
|
|
|
|
## Example
|
|
|
|
A very simple example of how SIMNet would be used:
|
|
|
|
```python3
|
|
import asyncio
|
|
import simnet
|
|
|
|
async def main():
|
|
cookies = {} # write your cookies
|
|
player_id = 123456789
|
|
async with simnet.StarRailClient(cookies, player_id=player_id) as client:
|
|
data = await client.get_starrail_user()
|
|
print(f"Player has a total of {data.stats.avatar_num} characters")
|
|
|
|
asyncio.run(main())
|
|
```
|
|
|
|
## Credits
|
|
- [genshin.py](https://github.com/thesadru/genshin.py/): fork source |