aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar Derek Fitzpatrick <[email protected]>2018-10-11 14:18:13 -0700
committerGravatar Derek Fitzpatrick <[email protected]>2018-10-11 14:18:13 -0700
commit8b2fa26a065b18cb9c4aa441eb1b6e360594a462 (patch)
tree9a949b5b5e4389d896ecb87c8b94e255d5553cda /bot
parentInitial commit. (diff)
parentRemove extra params to pepper (diff)
Merge branch 'deploy' of https://github.com/dfitzpatrick/hacktoberbot into 31-vote-for-favorite-monster
# Conflicts: # Pipfile
Diffstat (limited to 'bot')
-rw-r--r--bot/__init__.py5
-rw-r--r--bot/__main__.py (renamed from bot/bot.py)9
-rw-r--r--bot/cogs/hacktoberstats.py4
-rw-r--r--bot/cogs/halloweenify.py2
-rw-r--r--bot/cogs/movie.py8
-rw-r--r--bot/resources/monstersurvey/monstersurvey.json (renamed from bot/resources/monstersurvey.json)5
6 files changed, 20 insertions, 13 deletions
diff --git a/bot/__init__.py b/bot/__init__.py
index 8cbcd121..1d320245 100644
--- a/bot/__init__.py
+++ b/bot/__init__.py
@@ -1,5 +1,6 @@
-import os
import logging.handlers
+import os
+
# set up logging
@@ -27,4 +28,4 @@ logging.basicConfig(format='%(asctime)s - %(name)s %(levelname)s: %(message)s',
level=logging.DEBUG,
handlers=[console_handler, file_handler])
-logging.info('Logging Process Started') \ No newline at end of file
+logging.info('Logging Process Started')
diff --git a/bot/bot.py b/bot/__main__.py
index a40ed0d4..c40836c5 100644
--- a/bot/bot.py
+++ b/bot/__main__.py
@@ -1,10 +1,10 @@
+import logging
from os import environ
from pathlib import Path
-from sys import stderr
-from traceback import print_exc, format_exc
+from traceback import format_exc
from discord.ext import commands
-import logging
+
HACKTOBERBOT_TOKEN = environ.get('HACKTOBERBOT_TOKEN')
@@ -19,7 +19,6 @@ bot = commands.Bot(command_prefix=commands.when_mentioned_or(".", f"{ghost_unico
logging.info('Start loading extensions from ./cogs/')
-
if __name__ == '__main__':
# Scan for files in the /cogs/ directory and make a list of the file names.
cogs = [file.stem for file in Path('cogs').glob('*.py')]
@@ -36,4 +35,4 @@ logging.info(f'Spooky Launch Sequence Initiated...')
bot.run(HACKTOBERBOT_TOKEN)
-logging.info(f'HackBot has been slain!') \ No newline at end of file
+logging.info(f'HackBot has been slain!')
diff --git a/bot/cogs/hacktoberstats.py b/bot/cogs/hacktoberstats.py
index 4e896ae9..0a280443 100644
--- a/bot/cogs/hacktoberstats.py
+++ b/bot/cogs/hacktoberstats.py
@@ -95,7 +95,9 @@ class Stats:
is_query = f"public+author:{username}"
date_range = "2018-10-01..2018-10-31"
per_page = "300"
- query_url = f"{base_url}-label:{not_label}+type:{action_type}+is:{is_query}+created:{date_range}&per_page={per_page}"
+ query_url = (
+ f"{base_url}-label:{not_label}+type:{action_type}+is:{is_query}+created:{date_range}&per_page={per_page}"
+ )
headers = {"user-agent": "Discord Python Hactoberbot"}
async with aiohttp.ClientSession() as session:
diff --git a/bot/cogs/halloweenify.py b/bot/cogs/halloweenify.py
index 8a9db3df..201f6b95 100644
--- a/bot/cogs/halloweenify.py
+++ b/bot/cogs/halloweenify.py
@@ -1,5 +1,5 @@
-from pathlib import Path
from json import load
+from pathlib import Path
from random import choice
diff --git a/bot/cogs/movie.py b/bot/cogs/movie.py
index bb6f8df8..647ee22a 100644
--- a/bot/cogs/movie.py
+++ b/bot/cogs/movie.py
@@ -1,8 +1,10 @@
-import requests
import random
from os import environ
-from discord.ext import commands
+
+import requests
from discord import Embed
+from discord.ext import commands
+
TMDB_API_KEY = environ.get('TMDB_API_KEY')
TMDB_TOKEN = environ.get('TMDB_TOKEN')
@@ -72,7 +74,7 @@ class Movie:
rating_count = movie.get('vote_average') / 2
rating = ''
- for i in range(int(rating_count)):
+ for _ in range(int(rating_count)):
rating += ':skull:'
if (rating_count % 1) >= .5:
diff --git a/bot/resources/monstersurvey.json b/bot/resources/monstersurvey/monstersurvey.json
index 7a8c2043..7e923dcc 100644
--- a/bot/resources/monstersurvey.json
+++ b/bot/resources/monstersurvey/monstersurvey.json
@@ -1,5 +1,8 @@
{
"Frankenstein's Monster": {
"votes": []
- }
+ },
+ "Count Dracula": {
+ "votes": []
+ }
}