prep for remaking the acual Module and CLI

This commit is contained in:
Kepoor Hampond 2017-03-05 14:31:17 -08:00
parent 6f8b5d1f4f
commit 03ad538239
4 changed files with 9 additions and 9 deletions

4
.gitignore vendored
View file

@ -12,3 +12,7 @@ update_pypi_and_github.py
/flexx-app/
/.idea/
*test.py
# Temporarily downloaded files
*.mp3
*.zip

View file

@ -0,0 +1 @@
import argparse

View file

@ -22,7 +22,7 @@ from re import match
from bs4 import BeautifulSoup
# Local utils
import utils
import .utils
# Powered by...
import spotipy

View file

@ -21,8 +21,8 @@ else:
sys.exit(1)
# Local utilities
import utils
from metadata import *
import .utils
from .metadata import *
class Ripper:
def __init__(self, args={}):
@ -248,9 +248,4 @@ class Ripper:
m.add_tag("tracknumber", str(data["track_number"]))
m.add_tag("discnumber", str(data["disc_number"]))
m.add_tag("compilation", data["compilation"])
m.add_album_art( str(data["album_art"]))
#Ripper().song("Da Frame 2R", "Arctic Monkeys")
Ripper().spotify_list("playlist", "Jamboree Jams", "prakkillian")
m.add_album_art( str(data["album_art"]))