An open API service indexing awesome lists of open source software.

https://github.com/tim232/dropboxdiscord


https://github.com/tim232/dropboxdiscord

Last synced: 9 months ago
JSON representation

Awesome Lists containing this project

README

          

# dropboxDiscord

A simple package that helps people using dropbox to backup on discord

Example :
```python
import dropboxDiscord
from discord.ext import commands

bot = commands.Bot(command_prefix='!')

..

@bot.command()
@commands.is_owner()
async def backup(ctx):
await dropboxDiscord.backup(bot, "yourdropboxtoken",ctx, ['database.json', 'db.sqlite'])
..

```