1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-02-23 14:30:31 +00:00

FIX: (#286) Everything broke - comicvine new API, changed some structuring...should be working again now.

This commit is contained in:
evilhero 2013-03-26 22:35:44 -04:00
parent 2dd905cca2
commit e9485a0b23

View file

@ -26,7 +26,7 @@ from bs4 import BeautifulSoup as Soup
def getComic(comicid,type):
comicapi='583939a3df0a25fc4e8b7a29934a13078002dc27'
#api
PULLURL='http://api.comicvine.com/volume/' + str(comicid) + '/?api_key=' + str(comicapi) + '&format=xml&field_list=name,count_of_issues,start_year,last_issue,site_detail_url,image,publisher,description'
PULLURL='http://api.comicvine.com/volume/' + str(comicid) + '/?api_key=' + str(comicapi) + '&format=xml&field_list=name,count_of_issues,issues,start_year,site_detail_url,image,publisher,description'
#import library to do http requests:
import urllib2