Find more info and get api access by joining our Discord
The Authcord library is a Python module that allows you to easily communicate with the Authcord API.
see the Authcord docs
If you don't want to install from the source you can run:
pip install authcord
If you do want to install from the source you can run:
python setup.py
Before using the authcord module you must set your Authcord APIKEY by writing the bellow code:
authcord = Authcord("YOUR_USER_LEVEL_APIKEY")
once you have set your Authcord APIKEY you can now use the functions.
Functions
check_hwid
Example:
from authcord import Authcord
# Create an instance of the Authcord class and pass in your API key
api = Authcord("YOUR_USER_LEVEL_API_KEY")
# Use the check_hwid method to check the status of a HWID
hwid = "testhwid"
response = authcord.check_hwid(hwid)
# check the response
if response["Response"] == "Valid":
print("HWID is valid.")
else:
print("HWID is not valid.")