Small encoding changes

This commit is contained in:
Ritiek
2017-06-21 12:58:15 +05:30
parent 734d25a64d
commit 5aa8c66db3
8 changed files with 1 additions and 0 deletions

0
.gitignore vendored Normal file → Executable file
View File

0
LICENSE.txt Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
core/__init__.py Normal file → Executable file
View File

0
core/metadata.py Normal file → Executable file
View File

0
core/misc.py Normal file → Executable file
View File

0
requirements.txt Normal file → Executable file
View File

1
spotdl.py Normal file → Executable file
View File

@@ -58,6 +58,7 @@ def generate_YouTube_URL(raw_song):
# generate direct search YouTube URL # generate direct search YouTube URL
searchURL = misc.generate_search_URL(song) searchURL = misc.generate_search_URL(song)
item = urllib2.urlopen(searchURL).read() item = urllib2.urlopen(searchURL).read()
item = unicode(item, 'utf-8')
items_parse = BeautifulSoup(item, "html.parser") items_parse = BeautifulSoup(item, "html.parser")
check = 1 check = 1
if args.manual: if args.manual: