python 采集MySQL数据,并更新到另外一个库

import MySQLdb
import time
import datetime

# Create your tests here.
try:
    now_time=time.strftime('%Y%m')
    input_time = time.strftime('%Y-%m')
    # reader data
    readdb=MySQLdb.connect(host='192.168.0.206',db='cftest',user='cftest',passwd='123456!',port=3306)
    rcur=readdb.cursor()
    # conn.select_db('cftest')
    uvpv=rcur.execute('select COUNT(*),COUNT(DISTINCT callerid) from core_callback_cdr_%s' %now_time)

    wuvpv = []
    rdata=rcur.fetchall()
    for i in rdata:
        wuvpv.append(i[0])
        wuvpv.append(i[1])

    wuv = wuvpv[1]
    wpv = wuvpv[0]

    print wuv,wpv

    readdb.commit()
    rcur.close()
    readdb.close()

    # writer data
    writerdb = MySQLdb.connect(host='192.168.0.206',db='djtest',user='djtest',passwd='12345!',port=3306)
    wcur = writerdb.cursor()

    wcur.execute("insert into djweb_show_months(date,uv,pv) VALUE('%s','%s','%s') \
                 on DUPLICATE KEY UPDATE uv=VALUES(uv),pv=VALUES(pv)" % (input_time,wuv,wpv))


    writerdb.commit()
    wcur.close()
    writerdb.close()


except MySQLdb.Error,e:
    print "Mysql Error %d: %s" % (e.args[0], e.args[1])

转载于:https://my.oschina.net/harlanblog/blog/535270

实现数据采集和存储主要分为两个部分:数据采集数据存储。其中,数据采集使用Python中的requests数据存储使用MySQL数据库。 一、数据采集 1. 安装requests 使用pip命令安装requests: ``` pip install requests ``` 2. 发送HTTP请求 使用requests发送HTTP请求,获取网页内容。通过requests.get()方法发送GET请求,代码如下: ```python import requests url = 'https://www.example.com' response = requests.get(url) ``` 其中,url为目标网页的URL地址,response为请求返回的响应对象。 3. 解析HTML内容 获取到网页内容之后,需要对HTML内容进行解析,提取所需的数据。这里可以使用Python中的BeautifulSoup进行解析,代码如下: ```python from bs4 import BeautifulSoup soup = BeautifulSoup(response.text, 'html.parser') ``` 其中,response.text为获取到的HTML内容,'html.parser'为解析器类型,可以根据实际情况选择不同的解析器。 4. 提取数据 通过BeautifulSoup提供的方法,可以很方便地提取HTML内容中的数据。这里以提取网页标题为例,代码如下: ```python title = soup.title.string ``` 其中,soup.title.string表示获取HTML中的title标签,.string表示获取标签中的文本内容。 二、数据存储 1. 安装MySQL数据库 首先需要安装MySQL数据库,可以从官网下载安装包,也可以使用apt-get等命令进行安装。 2. 连接数据库 使用Python中的pymysql连接MySQL数据库,代码如下: ```python import pymysql db = pymysql.connect(host='localhost', user='root', password='password', port=3306) cursor = db.cursor() ``` 其中,host为MySQL服务器地址,user为MySQL登录用户名,password为MySQL登录密码,port为MySQL服务器端口号。 3. 创建数据库数据表 在MySQL数据库中创建一个新的数据库数据表,用于存储采集到的数据。可以使用MySQL命令行或者可视化工具创建数据库数据表。 4. 存储数据采集到的数据存储到MySQL数据库中,代码如下: ```python sql = 'INSERT INTO table_name (col1, col2, col3) VALUES ("%s", "%s", "%s")' % (value1, value2, value3) cursor.execute(sql) db.commit() ``` 其中,table_name为数据表名称,col1、col2、col3为数据表中的列名,value1、value2、value3为采集到的数据。execute()方法执行SQL语句,commit()方法提交事务。 完成以上操作,就可以实现数据采集和存储了。当然,具体实现还需要根据实际情况进行调整。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值