Dont require mastodon library when --debug is set

This commit is contained in:
Felix Ableitner 2019-10-31 19:38:30 +01:00
parent b0c47f18f1
commit 9b1a45d3cc

View file

@ -1,22 +1,23 @@
#!/usr/bin/python3
import os
from mastodon import Mastodon
import csv
import itertools
import random
import os
import argparse
instance = os.environ['MASTODON_INSTANCE']
username = os.environ['MASTODON_USERNAME']
parser = argparse.ArgumentParser(description='Parse quotes from .csv files, and post a random quote to Mastodon API')
parser.add_argument('--debug', action='store_true', help='Dont actually login or post to the remote API')
args = parser.parse_args()
mastodon_api = None
if not args.debug:
from mastodon import Mastodon
instance = os.environ['MASTODON_INSTANCE']
username = os.environ['MASTODON_USERNAME']
# Create application if it does not exist
# TODO: store this file in volume
if not os.path.isfile(instance+'.secret'):