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

溫馨提示×

溫馨提示×

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

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

Python使用字典的案例

發布時間:2020-11-10 11:02:46 來源:億速云 閱讀:187 作者:小新 欄目:編程語言

小編給大家分享一下Python使用字典的案例,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

字典(Dictionary)在Python中是一種可變的容器模型,它是通過一組鍵(key)值(value)對組成,這種結構類型通常也被稱為映射,或者叫關聯數組,也有叫哈希表的。每個key-value之間用“:”隔開,每組用“,”分割,整個字典用“{}”括起來。

凡是用到鍵值對的地方,就可以用字典。爬蟲中的headers都可以用到字典

# coding:utf-8

import requests
from bs4 import BeautifulSoup


class SpiderProxy(object):
    #Python版本為2.7以上
    headers = {
        "Host": "www.xicidaili.com",
        "User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:47.0) Gecko/20100101 Firefox/47.0",
        "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
        "Accept-Language": "en-US,en;q=0.5",
        "Accept-Encoding": "gzip, deflate",
        "Referer": "http://www.xicidaili.com/wt/1",
    }

    def __init__(self, session_url):
        self.req = requests.session()
        self.req.get(session_url)

    def get_pagesource(self, url):
        html = self.req.get(url, headers=self.headers)
        return html.content

    def get_all_proxy(self, url, n):
        data = []
        for i in range(1, n):
            html = self.get_pagesource(url + str(i))
            soup = BeautifulSoup(html, "lxml")

            table = soup.find('table', id="ip_list")
            for row in table.findAll("tr"):
                cells = row.findAll("td")
                tmp = []
                for item in cells:

                    tmp.append(item.find(text=True))
                data.append(tmp[1:3])
        return data

session_url = 'http://www.xicidaili.com/wt/1'
url = 'http://www.xicidaili.com/wt/'
p = SpiderProxy(session_url)
proxy_ip = p.get_all_proxy(url, 10)
for item in proxy_ip:
    if item:
        print item

看完了這篇文章,相信你對Python使用字典的案例有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

玉门市| 兰考县| 温州市| 武汉市| 扬中市| 昭苏县| 龙泉市| 正安县| 饶阳县| 陕西省| 海盐县| 阿瓦提县| 淮北市| 合阳县| 孟津县| 汝城县| 台中市| 安徽省| 黄浦区| 会昌县| 彰武县| 正定县| 额敏县| 万山特区| 沙坪坝区| 德令哈市| 富源县| 威海市| 广丰县| 甘德县| 西林县| 偏关县| 贵州省| 苍南县| 临夏县| 星子县| 广安市| 新巴尔虎右旗| 平谷区| 南昌县| 阿坝县|