mirror of
https://github.com/cooperhammond/irs.git
synced 2024-12-22 17:35:28 +00:00
Mispelling of parse_artist in ripper.py for -a + -A
This commit is contained in:
parent
cca726a1bf
commit
c6bd18edd2
BIN
Gorillaz - Tomorrow comes today lyrics-jzunQnhI3jQ.m4a.part
Normal file
BIN
Gorillaz - Tomorrow comes today lyrics-jzunQnhI3jQ.m4a.part
Normal file
Binary file not shown.
|
@ -216,7 +216,7 @@ with init, or in method arguments.")
|
|||
if ObjManip.blank_include(list_["name"], title):
|
||||
if Config.parse_artist(self):
|
||||
if ObjManip.blank_include(list_["artists"][0]["name"],
|
||||
ObjManip.arse_artist(self)):
|
||||
Config.parse_artist(self)):
|
||||
the_list = self.spotify.album(list_["uri"])
|
||||
break
|
||||
else:
|
||||
|
|
28
setup.py
28
setup.py
|
@ -1,22 +1,22 @@
|
|||
from setuptools import setup
|
||||
|
||||
setup(
|
||||
name='irs',
|
||||
version='6.3.2',
|
||||
description='A music downloader that just gets metadata.',
|
||||
url='https://github.com/kepoorhampond/irs',
|
||||
author='Kepoor Hampond',
|
||||
author_email='kepoorh@gmail.com',
|
||||
license='GPL',
|
||||
packages =['irs'],
|
||||
name = 'irs',
|
||||
version = '6.3.3',
|
||||
description = 'A music downloader that just gets metadata.',
|
||||
url = 'https://github.com/kepoorhampond/irs',
|
||||
author = 'Kepoor Hampond',
|
||||
author_email = 'kepoorh@gmail.com',
|
||||
license = 'GPL',
|
||||
packages = ['irs'],
|
||||
install_requires=[
|
||||
'bs4',
|
||||
'mutagen',
|
||||
'youtube-dl',
|
||||
'requests',
|
||||
'spotipy',
|
||||
'bs4',
|
||||
'mutagen',
|
||||
'youtube-dl',
|
||||
'requests',
|
||||
'spotipy',
|
||||
],
|
||||
entry_points = {
|
||||
'console_scripts': ['irs = irs.cli:main'],
|
||||
'console_scripts': ['irs = irs.cli:main'],
|
||||
},
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue