Python爬取內涵段子裡的段子
環境:Python3.6
#!/usr/bin/env python3
#-*-coding:utf-8-*-
#version:3.6.4
__author__ = '杜文濤'
import requests
import json
def get_json_dic(url):
global dict_json
response = requests.get(url=url)
json_response = response.content.decode() #獲取r的文字 就是一個json字串
dict_json = json.loads(json_response) # 將json字串轉換成dic字典物件
return dict_json
def get_joke(dict_json):
print(len(dict_json['data']['data']))
for i in range(1,20):
conture = input('是否繼續,Y/N')
if conture == 'Y' or conture == 'y':
joke = dict_json['data']['data'][i]['group']['text']
if i == 19:
dict_json = {}
conture
print(joke)
else:
exit()
def get_max_time(dic_json):
global max_time
max_time = dict_json['data']['max_time']
return max_time
if __name__ == '__main__':
max_time = 1519404642
url = '' + str(max_time)
get_json_dic(url)
get_max_time(dic_json=dict_json)
get_joke(dict_json=dict_json)
while True:
url = '' + str(max_time)
get_json_dic(url)
get_max_time(dic_json=dict_json)
get_joke(dict_json=dict_json)
print(url)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4662/viewspace-2809941/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Python網路爬蟲(正則, 內涵段子,貓眼電影, 鏈家爬取)Python爬蟲
- Python爬取糗事百科段子Python
- 段子手
- 單個Acticity顯示多個列表,仿內涵段子詳情頁的熱門評論、全部評論
- 程式設計師搞笑段子程式設計師
- 每週五程式設計師段子程式設計師
- 就要笑-精品笑話段子網站社群網站
- P1121 環狀最大兩段子段和
- 我用段子講.NET之依賴注入(一)依賴注入
- 我用段子講.NET之依賴注入其二依賴注入
- 40個只有程式設計師才看得懂的段子程式設計師
- 關於程式設計師的段子,有沒有get到你的點?程式設計師
- Python爬取網頁的所有內外鏈Python網頁
- JB的Python之旅-爬蟲篇-新浪微博內容爬取Python爬蟲
- python 爬蟲如何爬取動態生成的網頁內容Python爬蟲網頁
- Python爬蟲爬取B站up主所有動態內容Python爬蟲
- 80個讓你笑爆肚皮的程式設計師段子,不好笑算我輸!程式設計師
- 盤點那些程式設計師最汙的技術段子,老碼農秒懂!程式設計師
- 內涵妹子
- Python 爬取網頁中JavaScript動態新增的內容(一)Python網頁JavaScript
- Python 爬取網頁中JavaScript動態新增的內容(二)Python網頁JavaScript
- 誰在工地上想出來的段子,笑出腹肌了!只有土木人才能看懂!
- [譯] 如何使用 Python 和 BeautifulSoup 爬取網站內容Python網站
- 真正的程式設計師,敢於直面枯燥的開發,敢於正視汙汙的段子程式設計師
- 用Python分析44萬條資料,揭祕如何成為網易雲音樂評論區的網紅段子手Python
- python爬蟲用bs4獲取標籤中間的文字內容以及標籤裡的屬性Python爬蟲
- python爬取網圖Python
- 如何爬取 python 進行多執行緒跑資料的內容Python執行緒
- Python—Requests庫的爬取效能分析Python
- 最近幾個SQL最佳化案例(水一波部落格,當段子看😼😼)SQL
- python 爬蟲 爬取 learnku 精華文章Python爬蟲
- Python爬取電影天堂Python
- Python爬取周杰倫instagramPython
- python 爬取 mc 皮膚Python
- Python《爬取IPhone各式桌布》PythoniPhone
- 爬取Elastic Stack採集的Nginx內容ASTNginx
- Python 爬蟲進階篇-利用beautifulsoup庫爬取網頁文章內容實戰演示Python爬蟲網頁
- 不踩坑的Python爬蟲:如何在一個月內學會爬取大規模資料Python爬蟲