diff --git a/.gitignore b/.gitignore index 1377554..e511126 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,7 @@ *.swp + +src/lib +!src/lib/.gitkeep +src/.env +src/bin +!src/bin/active* diff --git a/README.md b/README.md index 42c0db9..27a56cf 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ A discord bot to manage you and your friend's meme collection Features ---- +- [ ] Run in a docker container - [ ] Query for memes by name - [ ] Fuzzy search for memes - [ ] Get a random meme diff --git a/main.py b/main.py deleted file mode 100644 index c05304c..0000000 --- a/main.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/python3 -import discord -import requests -import os, random -from fuzzywuzzy import fuzz, process -from minio import Minio -from minio.error import S3Error - -#globals for discord -token = os.environ['DISCORD_TOKEN'] -client = discord.Client() - - - - - - -client.run(token) - diff --git a/memes.py b/memes.py deleted file mode 100644 index e69de29..0000000 diff --git a/plex.py b/plex.py deleted file mode 100644 index e69de29..0000000