本文實例講述了python實現根據用戶輸入從電影網站獲取影片信息的方法。分享給大家供大家參考。具體如下:
這段python代碼主要演示了用戶終端輸入,正則表達式,網頁抓取等
#!/usr/bin/env python27#Importing the modulesfrom BeautifulSoup import BeautifulSoupimport sysimport urllib2import reimport json#Ask for movie titletitle = raw_input("Please enter a movie title: ")#Ask for which yearyear = raw_input("which year? ")#Search for spaces in the title stringraw_string = re.compile(r' ')#Replace spaces with a plus signsearchstring = raw_string.sub('+', title)#Prints the search stringprint searchstring#The actual queryurl = "http://www.imdbapi.com/?t=" + searchstring + "&y="+yearrequest = urllib2.Request(url)response = json.load(urllib2.urlopen(request))print json.dumps(response,indent=2)
希望本文所述對大家的Python程序設計有所幫助。
新聞熱點
疑難解答