Module for creating cards with characters from the game Zenless zone zero!
pip install zzzerocardimport zzzerocard
import asyncio
cookies = {
"ltoken_v2": "YOU_LTOKEN",
"ltmid_v2": "YOU_LTMID",
"ltuid_v2": "YOU_LTUID"
}
#Setting the module settings
client = zzzerocard.ZZZeroCard(
lang="en", #Language in which you need to receive information
asset_save= True, #Save card assets | Speeds up creation, takes up storage space
boost_speed= True, #Save character resources | Speeds up creation, takes up storage space
cookie= cookies, #information about your cookies from the HoYoLab website
uid=184551462, #Your game UID
server= "prod_gf_jp", #ID Server | prod_gf_eu - Europe
color = {"1181": (88,57,57,255)}, #Set character color
save= False #Should I save the result?
)
async def main():
async with client:
data = await client.create()
print(data)
asyncio.run(m())- Patreon: https://www.patreon.com/deviantapi
- Ko-Fi: https://ko-fi.com/dezzso

