python爬取新闻存入数据库_利用Python爬虫实现爬取网站中的数据并存入MySQL数据库中...

利用Python爬虫实现爬取网站中的数据并存入MySQL数据库中

发布时间:2020-11-07 15:36:26

来源:亿速云

阅读:63

今天就跟大家聊聊有关利用Python爬虫实现爬取网站中的数据并存入mysql数据库中,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

实验环境

1.安装Python 3.7

2.安装requests, bs4,pyMysql 模块

2.编写代码

# 51cto 博客页面数据插入MYSQL数据库

# 导入模块

import re

import bs4

import pymysql

import requests

# 连接数据库账号密码

db = pymysql.connect(host='172.171.13.229',

user='root', passwd='abc123',

db='test', port=3306,

charset='utf8')

# 获取游标

cursor = db.cursor()

def open_url(url):

# 连接模拟网页访问

headers = {

'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) '

'Chrome/57.0.2987.98 Safari/537.36&#

你可能感兴趣的:(python爬取新闻存入数据库)