Updated version on pypi

This commit is contained in:
Kepoor Hampond 2017-04-30 12:34:55 -07:00
parent b4272c2405
commit e627d8cfca
2 changed files with 3 additions and 2 deletions

View file

@ -123,7 +123,8 @@ init, or in method arguments.")
print("Finding Youtube Link ...")
search_terms = song + " " + artist + " " + additional_search
query_string = urlencode({"search_query": (search_terms)})
query_string = urlencode({"search_query": (
search_terms.encode('utf-8'))})
link = "http://www.youtube.com/results?" + query_string
html_content = urlopen(link).read()

View file

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name = 'irs',
version = '6.3.5',
version = '6.3.6',
description = 'A music downloader that just gets metadata.',
url = 'https://github.com/kepoorhampond/irs',
author = 'Kepoor Hampond',