日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > python >内容正文

python

python 爬取企业注册信息_python爬取企业名录

發(fā)布時(shí)間:2023/12/15 python 68 豆豆
生活随笔 收集整理的這篇文章主要介紹了 python 爬取企业注册信息_python爬取企业名录 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

爬取企業(yè)名錄然后存儲(chǔ)到數(shù)據(jù)庫中。

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

import requests

import MySQLdb

import re

from bs4 import BeautifulSoup

headers = {

"User-Agent": "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.87 Safari/537.36"

}

cookies = {'ASPSESSIONIDQCSRSBRS':'FBEPJPLCHEEMEHNLHFKCBCGB',

'Hm_lvt_819e30d55b0d1cf6f2c4563aa3c36208':'1483118719',

'Hm_lpvt_819e30d55b0d1cf6f2c4563aa3c36208':'1483120442'}

db = MySQLdb.connect("localhost","root",'liao1234','liao',charset="utf8")

cursor = db.cursor()

'''

sql ="""create table company(name char(100) not null,

type char(50),

addr char(150),

leader char(30),

date char(30))"""

cursor.execute(sql)

'''

#獲取各地區(qū)鏈接

r = requests.get("http://hangzhou.11467.com/",headers=headers,cookies=cookies)

html = r.text

soup = BeautifulSoup(html)

for tag in soup.find('div',class_='box sidesubcat t0').find_all('a'):

print tag.attrs['href']

base_url = "http://hangzhou.11467.com"+tag.attrs['href']+'pn'

for i in range(1,10):

url = base_url + str(i)

r1 = requests.get(url,headers=headers,cookies=cookies)

html1 = r1.text

soup1 = BeautifulSoup(html1)

for tag1 in soup1.find('ul',id='slist').find_all('li'):

ss = []

for cc in tag1.find_all('a'):

print cc.string

ss.append(cc.string)

for aa in tag1.find_all('dd'):

print aa.string

ss.append(aa.string)

if len(ss) == 3:

ss.append("none")

ss.append("none")

elif len(ss) == 4:

ss.append("none")

else:

pass

print len(ss)

if len(ss)==0:

continue

sql = "insert into company(name,type,addr,leader,date) values('%s','%s','%s','%s','%s')"%(ss[0],ss[1],ss[2],ss[3],ss[4])

cursor.execute(sql)

print ss[0]

db.close()

總結(jié)

以上是生活随笔為你收集整理的python 爬取企业注册信息_python爬取企业名录的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。