Sane defaults.

This commit is contained in:
Louis Cordier 2020-06-27 21:05:33 +02:00
parent 4736938ec2
commit a89f34348c

View file

@ -16,7 +16,7 @@ import sys
from recipe_scrapers import scrape_me, WebsiteNotImplementedError, SCRAPERS from recipe_scrapers import scrape_me, WebsiteNotImplementedError, SCRAPERS
ROOT = os.path.dirname(os.path.abspath(__file__)) ROOT = '~/.config/recipe_box/'
def ensure_directory_exists(path, expand_user=True, file=False): def ensure_directory_exists(path, expand_user=True, file=False):
@ -80,8 +80,9 @@ def valid_filename(directory, filename=None, ascii=False):
return filename return filename
if __name__ == '__main__': def main():
""" Console script entry point.
"""
parser = optparse.OptionParser('%prog url') parser = optparse.OptionParser('%prog url')
parser.add_option('-l', parser.add_option('-l',
@ -97,11 +98,11 @@ if __name__ == '__main__':
print(host) print(host)
sys.exit() sys.exit()
config_path = os.path.join(ROOT, 'recipe_box.json') config_path = ensure_directory_exists(os.path.join(ROOT, 'recipe_box.json'), file=True)
if not os.path.exists(config_path): if not os.path.exists(config_path):
config = {'recipe_box': '~/recipe_box/'} config = {'recipe_box': '~/recipe_box/'}
with open(config_path, 'w') as f: with open(config_path, 'w') as f:
json.dump(config, f) json.dump(config, f, indent=4)
else: else:
with open(config_path, 'r') as f: with open(config_path, 'r') as f:
config = json.load(f) config = json.load(f)
@ -161,3 +162,7 @@ if __name__ == '__main__':
recipe.write('\n') recipe.write('\n')
recipe.write('[{url}]({url})\n'.format(url=url)) recipe.write('[{url}]({url})\n'.format(url=url))
if __name__ == '__main__':
main()