Wrapper for the moonlist api
Project description
Wrapper for the moonlist api
Wrapper for the moonlist api with webhook and auto post data supporting
How to install?
From pip:
pip install moonlistclient
From source:
pip install git+https://github.com/VadyChel/MoonlistClient
Examples
Simple usage:
from moonlistclient import MoonlistClient, HTTPException
from discord.ext import commands, tasks
class MLCExample(commands.Cog):
def __init__(self, bot):
self.bot = bot
self.mclient = MoonlistClient(
bot=self.bot,
api_key="xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
autopost=False
)
self.post_stat_loop.start()
@tasks.loop(hours=3)
async def post_stat_loop(self):
await self.bot.wait_until_ready()
try:
await self.mclient.post_stat()
except HTTPException:
print("Failed to post bot stat")
def setup(client):
client.add_cog(MLCExample(client))
Other examples you can see in examples directory
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
moonlistclient-0.6.11.tar.gz
(18.8 kB
view hashes)