溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

用python爬了廈門人才網(wǎng)的.net崗位

發(fā)布時(shí)間:2020-06-28 19:34:00 來源:網(wǎng)絡(luò) 閱讀:304 作者:trs信息公開 欄目:編程語言

 為了看看.net的就業(yè)行情怎么樣,用python爬取了廈門人才網(wǎng).net崗位的信息,話不多說上代碼,python沒學(xué)多久,如果有什么不妥請(qǐng)指正

import requests
from bs4 import BeautifulSoup
page = 1;
def loop(page):
    url = "https://www.xmrc.com.cn/net/info/resultg.aspx?a=a&g=g&jobtype=&releaseTime=365&searchtype=1&keyword=.net&sortby=updatetime&ascdesc=Desc&PageIndex=%s"%page;
    response = requests.get(url)
    soup = BeautifulSoup(response.text, 'html.parser')

    allJob = soup.select(".a4.js_companyName");

    companys = []
    Others = []
    for x in range(0,len(allJob)):
            job = allJob[x].get_text().strip()
            print(job);
            other = allJob[x].parent.findPrevious("td").get_text().strip() + ","+  allJob[x].parent.findNext("td").get_text().strip() + "," + allJob[x].parent.findNext("td").findNext("td").get_text().strip();
            print(other);
            companys.append(job)
            Others.append(other)
    return companys, Others;

for x in range(0,20):
    companys,Others = loop(x)
    with open('company.txt', 'a', encoding='utf-8') as f:
        for x in range(0,len(companys)):
            f.write(str(companys[x] + "," + Others[x]) + '\n')
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI