Do a whole helluvalotta work
This commit is contained in:
parent
b12ea337bd
commit
7909c587e7
99
badwitch.py
99
badwitch.py
@ -8,52 +8,99 @@
|
|||||||
# Distributed under terms of the MIT license.
|
# Distributed under terms of the MIT license.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
from appdirs import AppDirs
|
||||||
|
from pathlib import Path
|
||||||
import argparse
|
import argparse
|
||||||
|
import json
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
class Library:
|
class Library:
|
||||||
# A big thing full of songs
|
# A thing full of albums
|
||||||
def __init__(self):
|
def __init__(self, file, albums={}):
|
||||||
|
self.albums = albums
|
||||||
|
self.file = file
|
||||||
|
|
||||||
|
# Load from file
|
||||||
|
def load(self, file):
|
||||||
|
with open(self.file, 'r+') as libfd:
|
||||||
|
libfd.seek(0)
|
||||||
return
|
return
|
||||||
|
|
||||||
class Song:
|
# Save to file
|
||||||
# An item with metadata and a source
|
def save(self):
|
||||||
def __init__(self, title, source):
|
with open(self.file, 'w+') as libfd:
|
||||||
self.title = title or 'Untitled song'
|
libfd.seek(0)
|
||||||
self.source = source or ''
|
json.dump(self.albums, libfd, indent='\t')
|
||||||
|
return
|
||||||
|
|
||||||
|
def download(self):
|
||||||
|
for album in self.albums:
|
||||||
|
return
|
||||||
|
|
||||||
class BadWitch:
|
class BadWitch:
|
||||||
# Our program
|
# Our program
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
# Set up arguments
|
# Set up arguments
|
||||||
self.argparser = argparse.ArgumentParser(description='Manage a declarative music library through YouTube scraping')
|
self.argparser = argparse.ArgumentParser(description='Manage a declarative music library through YouTube scraping')
|
||||||
self.argparser.add_argument('action', metavar='action', nargs='+',
|
self.argparser.add_argument('action', metavar='action', nargs=1,
|
||||||
choices=['download', 'add', 'remove'],
|
choices=['download', 'add', 'remove', 'list', 'test'],
|
||||||
help='Action to perform on the library')
|
help='Action to perform on the library')
|
||||||
self.argparser.add_argument('-l', '--library', metavar='f', nargs=1,
|
self.argparser.add_argument('-l', '--library', metavar='f', nargs=1,
|
||||||
help='Override default library file with this one')
|
help='Override default library file with this one')
|
||||||
self.argparser.add_argument('-v', '--verbose', action='store_true',
|
self.argparser.add_argument('-v', '--verbose', action='store_true',
|
||||||
help='Show more status messages')
|
help='Show more status messages')
|
||||||
|
# Set up appdirs
|
||||||
|
self.dirs = AppDirs('badwitch', 'rehashedsalt')
|
||||||
|
Path(self.dirs.user_data_dir).mkdir(parents=True, exist_ok=True)
|
||||||
|
|
||||||
def execute(self):
|
def execute(self):
|
||||||
self.args = self.argparser.parse_args()
|
self.args = self.argparser.parse_args()
|
||||||
if self.args.verbose:
|
# Initialize library
|
||||||
print(self.args.config)
|
libfile = self.args.library[0] or self.dirs.user_data_dir + '/lib.json'
|
||||||
print(self.args.downloadall)
|
lib = Library(file=libfile)
|
||||||
print(self.args.verbose)
|
# Perform action
|
||||||
|
for action in self.args.action:
|
||||||
def load(self, library):
|
if action == 'download':
|
||||||
# Load a library as an object
|
return
|
||||||
return
|
elif action == 'add':
|
||||||
|
return
|
||||||
def add(self, song):
|
elif action == 'remove':
|
||||||
# Add a song to the library
|
return
|
||||||
return
|
elif action == 'list':
|
||||||
|
for album in lib.albums:
|
||||||
def remove(self):
|
for song in lib.songs:
|
||||||
# Use keyword arguments here
|
print(song.title + ' by ' + song.artist + ', released ' + song.releasedate)
|
||||||
# Remove a song based on criterea
|
return
|
||||||
return
|
elif action == 'test':
|
||||||
|
# Set up a test album
|
||||||
|
lib.albums['Bad Witch'] = {
|
||||||
|
'Shit Mirror': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=yeqjz5mXrLQ'
|
||||||
|
},
|
||||||
|
'Ahead of Ourselves': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=4Ab1O-i4ep4'
|
||||||
|
},
|
||||||
|
'Play the Goddamned Part': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=85UgvBkMfr8'
|
||||||
|
},
|
||||||
|
'God Break Down the Door': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=eeJ_DzRJUI4'
|
||||||
|
},
|
||||||
|
'I\'m Not From This World': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=9fjbcSUSt9w'
|
||||||
|
},
|
||||||
|
'Over and Out': {
|
||||||
|
'artist': 'Nine Inch Nails',
|
||||||
|
'source': 'https://www.youtube.com/watch?v=h-XlN3N2fis'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
lib.save()
|
||||||
|
return
|
||||||
|
|
||||||
badwitch = BadWitch()
|
badwitch = BadWitch()
|
||||||
badwitch.execute()
|
badwitch.execute()
|
||||||
|
@ -1 +1 @@
|
|||||||
PyQt5==5.9.2
|
appdirs>=1.4.3
|
||||||
|
1
venv.sh
1
venv.sh
@ -6,6 +6,7 @@
|
|||||||
# Distributed under terms of the MIT license.
|
# Distributed under terms of the MIT license.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
[ -d ./venv ] || python3 -m venv venv
|
||||||
[ -r ./venv/bin/activate ] || exit 1
|
[ -r ./venv/bin/activate ] || exit 1
|
||||||
. ./venv/bin/activate
|
. ./venv/bin/activate
|
||||||
printf "Spawned a terminal within the venv\n"
|
printf "Spawned a terminal within the venv\n"
|
||||||
|
Loading…
Reference in New Issue
Block a user