python pymysql

pymsql

pymsql是Python中操做MySQL的模塊,其使用方法和MySQLdb幾乎相同。python

下載安裝mysql

pip install pymysql

使用操做git

一、執行SQLgithub

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
  
# 建立鏈接
conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='123', db='t1')
# 建立遊標
cursor = conn.cursor()
  
# 執行SQL,並返回收影響行數
effect_row = cursor.execute("update hosts set host = '1.1.1.2'")
  
# 執行SQL,並返回受影響行數
#effect_row = cursor.execute("update hosts set host = '1.1.1.2' where nid > %s", (1,))
  
# 執行SQL,並返回受影響行數
#effect_row = cursor.executemany("insert into hosts(host,color_id)values(%s,%s)", [("1.1.1.11",1),("1.1.1.11",2)])
  
  
# 提交,否則沒法保存新建或者修改的數據
conn.commit()
  
# 關閉遊標
cursor.close()
# 關閉鏈接
conn.close()

二、獲取新建立數據自增IDsql

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
  
conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='123', db='t1')
cursor = conn.cursor()
cursor.executemany("insert into hosts(host,color_id)values(%s,%s)", [("1.1.1.11",1),("1.1.1.11",2)])
conn.commit()
cursor.close()
conn.close()
  
# 獲取最新自增ID
new_id = cursor.lastrowid

三、獲取查詢數據shell

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
  
conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='123', db='t1')
cursor = conn.cursor()
cursor.execute("select * from hosts")
  
# 獲取第一行數據
row_1 = cursor.fetchone()
  
# 獲取前n行數據
# row_2 = cursor.fetchmany(3)
# 獲取全部數據
# row_3 = cursor.fetchall()
  
conn.commit()
cursor.close()
conn.close()

注:在fetch數據時按照順序進行,能夠使用cursor.scroll(num,mode)來移動遊標位置,如:數據庫

  • cursor.scroll(1,mode='relative')  # 相對當前位置移動
  • cursor.scroll(2,mode='absolute') # 相對絕對位置移動

四、fetch數據類型服務器

  關於默認獲取的數據是元祖類型,若是想要或者字典類型的數據,即:ssh

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import pymysql
  
conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='123', db='t1')
  
# 遊標設置爲字典類型
cursor = conn.cursor(cursor=pymysql.cursors.DictCursor)
r = cursor.execute("call p1()")
  
result = cursor.fetchone()
  
conn.commit()
cursor.close()
conn.close()

 

練習程序:fetch

利用mysql、ssh、線程池的模塊方法實現,主機管理。

表結構:

輸入用戶名密碼(數據庫中有的test\123 test2\123456)
  1. 執行shell命令
  看到此用戶的主機地址;
  輸入要管理的主機地址,輸入多個以逗號分隔;
  輸入shell命令,返回結果,打印。
  2. 查看服務器地址
  返回結果,打印
  3. 增長服務器地址
  輸入ip、port、host_user、host_passwd;
  返回狀態並打印
  4. 修改服務器地址
  輸入要修改的ip;
  輸入要修改的列名;
  輸入要修改的值;
  返回收影響行數,打印。
  5. 刪除服務器地址
  輸入要刪除的ip;
  返回收影響行數,打印。
  6. 退出
  退出當前程序

程序代碼:

https://github.com/wangyufu/host_manage

相關文章
相關標籤/搜索