本文實例講述了python實現根據用戶輸入從電影網站獲取影片信息的方法。分享給大家供大家參考。具體如下:
這段python代碼主要演示了用戶終端輸入,正則表達式,網頁抓取等
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python27 #Importing the modules from BeautifulSoup import BeautifulSoup import sys import urllib2 import re import json #Ask for movie title title = raw_input ( "Please enter a movie title: " ) #Ask for which year year = raw_input ( "which year? " ) #Search for spaces in the title string raw_string = re. compile (r ' ' ) #Replace spaces with a plus sign searchstring = raw_string.sub( '+' , title) #Prints the search string print searchstring #The actual query 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程序設計有所幫助。