lightning-bot / sanctum-tc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sanctum-tc

Python library for interacting with the Sanctum API

Usage

import asyncio

from sanctum import HTTPClient

async def main():
    client = HTTPClient("<your-api-url>", "<your-api-key>")
    resp = await client.get_guild(527887739178188830)
    print(resp)
    await client.close()

asyncio.run(main())

About

License:MIT License


Languages

Language:Python 100.0%