pymysql語法 pymysql的用法

2021-10-12 15:57:45 字數 3729 閱讀 3774

一、首先要安裝mysql,我安裝的mysq5.7的;

二、啟動mysql,

啟動:net start mysql

停止:net stop mysql

解除安裝:net delete mysql

三、安裝pymysql模組:

pip直接安裝即可;

四、基本的增刪改查的操作:

#coding:utf-8

# import mysqldb python3不支援mysqldb

import pymysql

#開啟資料庫,資料庫可自己建立,create database test;

con = pymysql.connect(host='localhost', user='root', passwd='登入密碼', db='test', port=3306, charset='utf8')

#通過cursor()建立乙個游標物件

cur = con.cursor()

#建表cur.execute(' create table student (id int not null auto_increment primary key,name varchar(20),age int, *** varchar(2))')

#插入資料

data="'alice',16,女"

cur.execute(' insert into person (name,age) values (%s)'%data)

cur.execute(' insert into person (name,age) values (%s,%s)',('alex',20,'男'))

cur.executemany(' insert into person (name,age) values (%s,%s)',[('sara',24,'女'),('開心麻花',30,'男')])

#提交操作

con.commit()

#查詢表中的資料

cur.execute('select * from person')

#fetchall()獲取所有資料,返回乙個二維的列表

res = cur.fetchall()

for line in res:

print(line)

# fetchone()獲取其中的乙個結果,返回乙個元組

cur.execute('select * from person')

res = cur.fetchone()

print(res)

#修改資料

cur.execute('update person set name=%s where id=%s', ('小明',12,'男'))

#刪除資料

cur.execute('delete from person where id=%s', (0,))

con.commit()

con.close()

五、用pymysql跑了一下之前寫的天氣的爬取:

import requests

import json

import pymysql

#開啟資料庫

con = pymysql.connect(host='localhost', user='root', passwd='wjx411527', db='test', port=3306, charset='utf8')

#通過cursor方法建立乙個游標物件

cur = con.cursor()

#建表cur.execute(' create table tianqi (id int not null auto_increment primary key,date int ,date2 varchar(20),history_rain varchar(20),history_max int,history_min int,tmax varchar(10),tmin varchar(10),time varchar(20),w1 varchar(20),wd1 varchar(20),alins varchar(20),als varchar(20))')

class weather():

'referer': ''

# 新建列表,用來儲存獲取的資料

all_info =

def __init__(self):

pass

# 獲取一年的天氣資料

def get_data(self):

global year

month = ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12']

for i in month:

url = '' + str(year) + '/101280601_' + str(year) + str(

i) + '.html?_=1496558858156'

html = requests.get(url, headers=self.headers).content

global datas

datas = json.loads(html[11:])

self.get_info()

# 獲取天氣的具體資料

def get_info(self):

for data in datas:

if data['date'][:4] == year:

date = data['date']

date2 = data['nlyf'] + data['nl']

history_rain = data['hgl']

history_max = data['hmax']

history_min = data['hmin']

tmax = data['max']

tmin = data['min']

time = data['time']

w1 = data['w1']

wd1 = data['wd1']

alins = data['alins']

als = data['als']

#先把去重的資料儲存到列表all_info

info = (date,date2,history_rain,history_max,history_min,tmax,tmin,time,w1,wd1,alins,als )

if info not in self.all_info:

#把資料存到sqlite

def store_pymysql(self):

self.get_data()

for one_info in self.all_info:

cur.execute(' insert into tianqi (date,date2,history_rain,history_max,history_min,tmax,tmin,time,w1,wd1,alins,als) values (%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s)',one_info)

con.commit()

if __name__ == '__main__':

year = '2017'

tianqi = weather()

tianqi.store_pymysql()

# 關閉資料庫連線

con.close()

執行結果:

天氣幾個小點注意一下:

1、mysql的資料庫要提前建立好;

2、mysql在建立表時必須要表明每列的資料型別;

pymysql語法 pymysql用法

pymysql用法 一 基礎用法 匯入 import pymysql 連線資料庫 conn pymysql.connect host user password database 建立游標 cur conn.cursor 括號內沒有任何設定 查詢後輸出的結果是元組形式 括號內新增cursor pym...

pymysql語法 pymysql庫常用物件用法

pymysql庫中提供了兩個常用的物件 connection物件和cursor物件。1.connection物件 connection物件用於建立與mysql資料庫的連線,可以通過以下方法建立 connect 引數列表 以上方法中的常用引數及其含義如下 引數host,資料庫所在主機的ip主機位址,若...

mac多版本python安裝 pymysql

系統裡面安裝了多個python的版本,有2.7和3.4等。預設的2.7版本,但我開發需要3.4版本的。預設情況下,用pip安裝pymysql sudo pip install pymysql安裝之後,在命令列裡面測試 import pymysql如果沒有報錯,則表示安裝成功。找到3.4到安裝路徑,我...