亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何用Python來找你喜歡的妹子

發布時間:2021-10-26 17:39:19 來源:億速云 閱讀:151 作者:柒染 欄目:編程語言

這篇文章將為大家詳細講解有關如何用Python來找你喜歡的妹子,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

先上效果圖吧,no pic say bird!

如何用Python來找你喜歡的妹子

如何用Python來找你喜歡的妹子

如何用Python來找你喜歡的妹子

我之前寫了一個抓取妹子資料的文章,主要是使用selenium來模擬網頁操作,然后使用動態加載,再用xpath來提取網頁的資料,但這種方式效率不高。

所以今天我再補一個高效獲取數據的辦法.由于并沒有什么模擬的操作,一切都可以人工來控制,所以也不需要打開網頁就能獲取數據!

但我們需要分析這個網頁,打開網頁 http://www.lovewzly.com/jiaoyou.html 后,按F12,進入Network項中

url在篩選條件后,只有page在發生變化,而且是一頁頁的累加,而且我們把這個url在瀏覽器中打開,會得到一批json字符串,所以我可以直接操作這里面的json數據,然后進行存儲即可!

代碼結構圖:

如何用Python來找你喜歡的妹子

操作流程:

  • headers 一定要構建反盜鏈以及模擬瀏覽器操作,先這樣寫,可以避免后續問題!

  • 條件拼裝

  • 然后記得數據轉json格式

  • 然后對json數據進行提取,

  • 把提取到的數據放到文件或者存儲起來

主要學習到的技術:

  • 學習requests+urllib

  • 操作execl

  • 文件操作

  • 字符串

  • 異常處理

  • 另外其它基礎

請求數據:

def craw_data(self):         '''數據抓取'''         headers = {             'Referer': 'http://www.lovewzly.com/jiaoyou.html',             'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.104 Safari/537.36 Core/1.53.4620.400 QQBrowser/9.7.13014.400'         }         page = 1         while True:              query_data = {                 'page':page,                 'gender':self.gender,                 'starage':self.stargage,                 'endage':self.endgage,                 'stratheight':self.startheight,                 'endheight':self.endheight,                 'marry':self.marry,                 'salary':self.salary,             }             url = 'http://www.lovewzly.com/api/user/pc/list/search?'+urllib.urlencode(query_data)             print url             req = urllib2.Request(url, headers=headers)             response = urllib2.urlopen(req).read()             # print response             self.parse_data(response)             page += 1

字段提取:

def parse_data(self,response):       '''數據解析'''       persons = json.loads(response).get('data').get('list')       if persons is None:           print '數據已經請求完畢'           return        for person in persons:           nick = person.get('username')           gender = person.get('gender')           age = 2018 - int(person.get('birthdayyear'))           address = person.get('city')           heart = person.get('monolog')           height = person.get('height')           img_url = person.get('avatar')           education = person.get('education')           print nick,age,height,address,heart,education           self.store_info(nick,age,height,address,heart,education,img_url)           self.store_info_execl(nick,age,height,address,heart,education,img_url)

文件存放:

def store_info(self, nick,age,height,address,heart,education,img_url):         '''         存照片,與他們的內心獨白         '''         if age < 22:             tag = '22歲以下'         elif 22 <= age < 28:             tag = '22-28歲'         elif 28 <= age < 32:             tag = '28-32歲'         elif 32 <= age:             tag = '32歲以上'         filename = u'{}歲_身高{}_學歷{}_{}_{}.jpg'.format(age,height,education, address, nick)          try:             # 補全文件目錄             image_path = u'E:/store/pic/{}'.format(tag)             # 判斷文件夾是否存在。             if not os.path.exists(image_path):                 os.makedirs(image_path)                 print image_path + ' 創建成功'              # 注意這里是寫入圖片,要用二進制格式寫入。             with open(image_path + '/' + filename, 'wb') as f:                 f.write(urllib.urlopen(img_url).read())              txt_path = u'E:/store/txt'             txt_name = u'內心獨白.txt'             # 判斷文件夾是否存在。             if not os.path.exists(txt_path):                 os.makedirs(txt_path)                 print txt_path + ' 創建成功'              # 寫入txt文本             with open(txt_path + '/' + txt_name, 'a') as f:                 f.write(heart)         except Exception as e:             e.message

execl操作:

def store_info_execl(self,nick,age,height,address,heart,education,img_url):        person = []        person.append(self.count)   #正好是數據條        person.append(nick)        person.append(u'女' if self.gender == 2 else u'男')        person.append(age)        person.append(height)        person.append(address)        person.append(education)        person.append(heart)        person.append(img_url)         for j in range(len(person)):            self.sheetInfo.write(self.count, j, person[j])         self.f.save(u'我主良緣.xlsx')        self.count += 1        print '插入了{}條數據'.format(self.count)

如何用Python來找你喜歡的妹子

關于如何用Python來找你喜歡的妹子就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

建平县| 沁源县| 谢通门县| 宁城县| 晋江市| 盐池县| 和硕县| 龙口市| 曲沃县| 松潘县| 灯塔市| 阜新| 綦江县| 福安市| 大渡口区| 阿克苏市| 长海县| 常德市| 中山市| 理塘县| 宜川县| 祥云县| 若尔盖县| 富源县| 双柏县| 安多县| 吴堡县| 阳东县| 江永县| 集安市| 车致| 腾冲县| 寻乌县| 阿图什市| 忻城县| 汝州市| 景宁| 汝阳县| 砚山县| 博兴县| 志丹县|