當前位置:首頁 » 微電影集 » python爬蟲下小電影

python爬蟲下小電影

發布時間: 2023-03-09 23:57:48

㈠ python爬取vip電影違法嗎

法律分析:我們生活中幾乎每天都在爬蟲應用,如網路,你在網路中搜索到的內容幾乎都是爬蟲採集下來的(網路自營的產品除外,如網路知道、網路等),所以網路爬蟲作為一門技術,技術本身是不違法的。

法律依據:《中華人民共和國網路安全法》 第四條 國家制定並不斷完善網路安全戰略,明確保障網路安全的基本要求和主要目標,提出重點領域的網路安全政策、工作任務和措施。

㈡ 用Python爬蟲爬取愛奇藝上的VIP電影視頻,是違法行為嗎

屬於違法行為,情節嚴重者,愛奇藝將有權對您追究法律責任

㈢ python爬蟲抓取電影top20排名怎麼寫

初步接觸python爬蟲(其實python也是才起步),發現一段代碼研究了一下,覺得還比較有用處,Mark下。
上代碼:

#!/usr/bin/python#coding=utf-8#Author: Andrew_liu#mender:cy"""
一個簡單的Python爬蟲, 用於抓取豆瓣電影Top前100的電影的名稱
Anthor: Andrew_liu
mender:cy
Version: 0.0.2
Date: 2017-03-02
Language: Python2.7.12
Editor: JetBrains PyCharm 4.5.4
"""import stringimport reimport urllib2import timeclass DouBanSpider(object) :
"""類的簡要說明
主要用於抓取豆瓣Top100的電影名稱

Attributes:
page: 用於表示當前所處的抓取頁面
cur_url: 用於表示當前爭取抓取頁面的url
datas: 存儲處理好的抓取到的電影名稱
_top_num: 用於記錄當前的top號碼
"""

def __init__(self):
self.page = 1
self.cur_url = "h0?start={page}&filter=&type="
self.datas = []
self._top_num = 1
print u"豆瓣電影爬蟲准備就緒, 准備爬取數據..."

def get_page(self, cur_page):
"""
根據當前頁碼爬取網頁HTML
Args:
cur_page: 表示當前所抓取的網站頁碼
Returns:
返回抓取到整個頁面的HTML(unicode編碼)
Raises:
URLError:url引發的異常
"""
url = self.cur_url try:
my_page = urllib2.urlopen(url.format(page=(cur_page - 1) * 25)).read().decode("utf-8") except urllib2.URLError, e: if hasattr(e, "code"): print "The server couldn't fulfill the request."
print "Error code: %s" % e.code elif hasattr(e, "reason"): print "We failed to reach a server. Please check your url and read the Reason"
print "Reason: %s" % e.reason return my_page def find_title(self, my_page):
"""
通過返回的整個網頁HTML, 正則匹配前100的電影名稱

Args:
my_page: 傳入頁面的HTML文本用於正則匹配
"""
temp_data = []
movie_items = re.findall(r'<span.*?class="title">(.*?)</span>', my_page, re.S) for index, item in enumerate(movie_items): if item.find("&nbsp") == -1:
temp_data.append("Top" + str(self._top_num) + " " + item)
self._top_num += 1
self.datas.extend(temp_data) def start_spider(self):
"""
爬蟲入口, 並控制爬蟲抓取頁面的范圍
"""
while self.page <= 4:
my_page = self.get_page(self.page)
self.find_title(my_page)
self.page += 1def main():
print u"""
###############################
一個簡單的豆瓣電影前100爬蟲
Author: Andrew_liu
mender: cy
Version: 0.0.2
Date: 2017-03-02
###############################
"""
my_spider = DouBanSpider()
my_spider.start_spider()
fobj = open('/data/moxiaokai/HelloWorld/cyTest/blogcode/top_move.txt', 'w+') for item in my_spider.datas: print item
fobj.write(item.encode("utf-8")+' ')
time.sleep(0.1) print u"豆瓣爬蟲爬取完成"if __name__ == '__main__':
main()

運行結果:

㈣ python 爬蟲求教

python爬蟲,requests非常好用,建議使用。匹配結果使用re正則,列:

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

importre


str1="""
<spanclass="title">尋夢環游記</span>
...
<spanclass="rating_num"property="v:average">9.0</span>
"""

title=re.search(r'<spanclass="title">(.*?)</span>',str1)
iftitle:
print(title.group(1))
rating=re.search(r'<spanclass="rating_num"property="v:average">(.*?)</span>',str1)
ifrating:
print(rating.group(1))

熱點內容
日本綜藝中國電影完整版 發布:2023-08-31 22:05:04 瀏覽:1612
日本污電影推薦 發布:2023-08-31 22:03:58 瀏覽:585
北京電影學院有哪些小演員 發布:2023-08-31 22:01:10 瀏覽:1567
日本電影女主割下男主 發布:2023-08-31 21:58:33 瀏覽:1286
一個法國女孩剪短頭發電影 發布:2023-08-31 21:57:38 瀏覽:1302
日本電影主角平田一郎 發布:2023-08-31 21:54:07 瀏覽:946
電影票為什麼搶不到 發布:2023-08-31 21:52:52 瀏覽:1251
電影院眼鏡嗎 發布:2023-08-31 21:50:27 瀏覽:680
港劇曉梅是哪個電影 發布:2023-08-31 21:50:15 瀏覽:698
書生娶個鬼老婆是什麼電影 發布:2023-08-31 21:49:25 瀏覽:746