Client
CTFdClient(base_url, token=None, *, timeout=DEFAULT_TIMEOUT, user_agent=DEFAULT_USER_AGENT, verify=True, client=None)
Async client for a CTFd instance.
Usage::
async with CTFdClient('https://demo.ctfd.io', token='ctfd_...') as ctfd:
me = await ctfd.users.me()
async for challenge in ctfd.challenges.iter():
print(challenge.name)