Skip to content
This repository was archived by the owner on Dec 21, 2025. It is now read-only.

GrowthEngineAI/aiolotus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aiolotus

Unofficial Asyncronous Python Client for Lotus

Latest Version: PyPI version

Official Client


Installation

# Install from PyPI
pip install aiolotus

# Install from source
pip install git+https://github.com/GrowthEngineAI/aiolotus.git

Usage

WIP - Simple Usage Example

import asyncio
from aiolotus import Lotus
from aiolotus.utils import logger

Lotus.configure(
    apikey = '...',
    url = '',
)

async def run_test():
    res = await Lotus.get_all_customers()
    logger.info(res)

    res = await Lotus.get_all_metrics()
    logger.info(res)

    res = await Lotus.get_all_plans()
    logger.info(res)

    res = await Lotus.get_all_subscriptions()
    logger.info(res)

    await Lotus.async_shutdown()


asyncio.run(run_test())

About

Unofficial Asyncronous Python Client for Lotus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages