ChanChanAuth

A simple Python wrapper for https://api.ccauth.app/


License
MIT
Install
pip install ChanChanAuth==0.0.4

Documentation

ChanChanAuth

Python wrapper for https://api.ccauth.app/

Examples of Usage

Login

from chanchanauth import Client


client = Client(AID, APIKEY, SECRET)
response = client.login(USERNAME, PASSWORD, HWID)

if response.is_authenticated:
    print("Logged in")

Register

from chanchanauth import Client

client = Client(AID, APIKEY, SECRET)
response = client.register(USERNAME, PASSWORD, HWID, DISCORD, LICENSE)

if response.success:
    print("Success")

Reset HWID

from chanchanauth import Client

client = Client(AID, APIKEY, SECRET)
response = client.hwid_reset(USERNAME, PASSWORD, HWID, HWID_KEY)

if response.success:
    print("success")

Generate License

from chanchanauth import Admin

admin = Admin(AID, APIKEY, USERNAME, PASSWORD)
response = admin.generate_license()

if response.success:
   print(response.license)

Generate HWID Key

from chanchanauth import Admin

admin = Admin(AID, APIKEY, USERNAME, PASSWORD)
response = admin.generate_hwidkey()

if response.success:
   print(response.key)