https://github.com/tim232/dropboxdiscord
https://github.com/tim232/dropboxdiscord
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tim232/dropboxdiscord
- Owner: Tim232
- License: gpl-3.0
- Created: 2020-11-28T12:47:34.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-28T12:59:17.000Z (over 5 years ago)
- Last Synced: 2025-09-01T15:58:59.829Z (10 months ago)
- Language: Python
- Homepage: https://pypi.org/dropboxDiscord
- Size: 15.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'])
..
```