Python regular matching grab watercress movie link and comment code sharing _python

Source: Internet
Author: User
Tags comments

Copy Code code as follows:

Import Urllib.request
Import re
Import time

def movie (Movietag):

Tagurl=urllib.request.urlopen (URL)
Tagurl_read = Tagurl.read (). Decode (' Utf-8 ')
Return Tagurl_read

def subject (Tagurl_read):

'''
Here's the problem:
① This is only sorted on a single page, but not on all the pages of the movie.
② Next update Add movie link, consider adding movie poster
③ need to append list
④ Import into local txt or Excel
⑤ can match links and names, ratings, comments and arrays when matching movie names

'''
#正则表达式匹配电影的名字 (links), ratings and comments
Nameurl = Re.findall (R ' (http://movie.douban.com/subject/[0-9.) +) \/"\s+title=" (. +) "', Tagurl_read)
Scoreurl = Re.findall (R ' <span\s+class= "Rating_nums" > ([0-9.] +) <\/span> ', Tagurl_read
Evaluateurl = Re.findall (R ' <span\s+class= "PL" >\ ((\w+) People evaluation \) <\/span> ', Tagurl_read)
movielists = List (Zip (Nameurl,scoreurl,evaluateurl))
Newlist.extend (movielists)
Return NewList

#用quote处理特殊 (Chinese) character
Movie_type = urllib.request.quote (Input (' Please enter movie type (such as plot, comedy, suspense) ")
Page_end=int (' Please enter the page number at the end of the search: ')
Num_end=page_end*20
Num=0
Page_num=1
Newlist=[]
While Num<num_end:
Url=r ' http://movie.douban.com/tag/%s?start=%d '% (movie_type,num)
Movie_url = Movie (URL)
Subject_url=subject (Movie_url)
Num=page_num*20
Page_num+=1
Else
#使用sorted函数对列表进行排列, the reverse argument is true in ascending order, the default or False is descending, Key=lambda doesn't quite understand the principle here
Movielist = sorted (newlist, Key=lambda movielist:movielist[1],reverse = True)
For movie in Movielist:
Print (movie)

Time.sleep (3)

Print (' End ')

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.