Skip to content

DEViantUA/ZZZeroCard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ZZZeroCard

Module for creating cards with characters from the game Zenless zone zero!



Install:

pip install zzzerocard

Launch:

import 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())

Resultat:

Resultat Style 1

Adaptation

Thank the author for the code:

About

Module for creating cards with characters from the game Zenless zone zero!

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages