Skip to main content

A simple API wrapper for Discord Bot List, DiscordBotsGG, and Top.gg

Project description

toppy logo

An API wrapper made for discord.py or any forks for Discord Bot List, DiscordBotsGG, and Top.gg.

Documentation

https://toppy-python.readthedocs.io/en/latest/

Installation

Python 3.8 or higher is needed

$ pip install -U toppy-python

Example

import toppy
from discord.ext import commands


dbl_token = 'Your Discord Bot List token here'
dbgg_token = 'Your DiscordBotsGG API token here'
topgg_token = 'your Top.gg token here'

bot = commands.Bot('!')  # or discord.Client()
toppy_client = toppy.Client(
    bot,
    dbl_token=dbl_token,
    dbgg_token=dbgg_token,
    topgg_token=topgg_token
)


@bot.event
async def on_dbl_autopost_success():  # dbl/dbgg/topgg
    print('Server count posted')
    print(f'Server count: {len(bot.guilds)}')


@bot.event
async def on_dbl_autopost_error(error: toppy.HTTPException):  # dbl/dbgg/topgg
    print(f'Uh oh. An error occurred. Status: {error.resp.status}')



bot.run(...)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

toppy-python-2.0.1.tar.gz (18.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page