Examples - Python
Examples of using the EcoNuker API.
Notice:econuker.xyz/api is unavailable until June 1, 2023. For now, use beta.econuker.xyz/api
Python Example
Installation
pip install econukerCode
# Python Example
from econuker import Client
beta = True # False
authtoken = None # "your auth token here"
if __name__ == "__main__":
client = Client(auth_token=authtoken, beta=beta)
status = client.status()
print(status.name)Python Async Example
Installation
pip install econukerCode
Last updated