2015. 2. 8. 16:42
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.

#! -*- coding: utf-8 -*-

from BeautifulSoup import BeautifulSoup
import sys
import urllib2
import re
import json

title= raw_input("Please eneter a movie title: ")
year=raw_input("which year? ")
raw_string=re.compile(r' ')
searchstring=raw_string.sub('+',title)

print searchstring

url="http://www.imdbapi.com/?t="+searchstring+"&y="+year
request=urllib2.Request(url)
response=json.load(urllib2.urlopen(request))

print json.dumps(response,indent=2)



'Python' 카테고리의 다른 글

textToImage.py  (0) 2015.02.08
scriptinfo.py / scriptinfoUsage.py  (0) 2015.02.08
hanGame.py  (0) 2015.02.08
curIP.py  (0) 2015.02.08
fahToCel.py  (0) 2015.02.08
Posted by af334