thesadru / genshinstats

PLEASE USE GENSHIN.PY A python library that can get the stats of Genshin Impact players using Mihoyo's API. PLEASE USE GENSHIN.PY
https://thesadru.github.io/pdoc/genshinstats/
MIT License
265 stars 38 forks source link

how i can check my refines? #45

Closed NekoMazix closed 2 years ago

NekoMazix commented 2 years ago

how i can check my refines on weapons?

thesadru commented 2 years ago
import genshinstats as gs
...
characters = gs.get_characters(uid)
for character in characters:
    print(character["weapon"]["refinement"])
NekoMazix commented 2 years ago

thanks