badwitch/badwitch.py
Salt 0bd828c6c5 Rework arguments
Tryna figure out how I want this laid out
2020-03-03 06:21:50 -06:00

35 lines
1.1 KiB
Python
Executable File

#! /usr/bin/env python3
# -*- coding: utf-8 -*-
# vim:fenc=utf-8:ft=python
#
# Bad Witch
# Copyright © 2020 Vintage Salt <rehashedsalt@cock.li>
#
# Distributed under terms of the MIT license.
#
import argparse
import sys
class BadWitch:
def __init__(self):
# Set up arguments
self.argparser = argparse.ArgumentParser(description='Manage a declarative music library through YouTube scraping')
self.argparser.add_argument('action', metavar='action', nargs='+',
choices=['download', 'add', 'remove'],
help='Action to perform on the library')
self.argparser.add_argument('-l', '--library', metavar='f', nargs=1,
help='Override default library file with this one')
self.argparser.add_argument('-v', '--verbose', action='store_true',
help='Show more status messages')
def execute(self):
self.args = self.argparser.parse_args()
if self.args.verbose:
print(self.args.config)
print(self.args.downloadall)
print(self.args.verbose)
badwitch = BadWitch()
badwitch.execute()