# -*- coding: utf-8 -*-import os
import requests
import pymysql
import _thread
#import threading
# 執行緒鎖
#lock = threading.lock()
# 執行緒樹
threadnum = 50
# 開啟資料庫連線
db = pymysql.connect(
host = '127.0.0.1',
port = 3316,
user = 'lutong',
passwd = '***xx',
db = 'game-video-central',
charset = 'utf8'
)# 連線資料庫,並觸發下發動作
def getimgurlfromdb():
# 使用cursor()方法獲取操作游標
cursor = db.cursor()
# sql 查詢語句
sql = "select poster_hd from t_series \
where status = 'online'"
try:
# 執行sql語句
cursor.execute(sql)
# 獲取所有記錄列表
results = cursor.fetchall()
for row in results:
img = row[0]
imgurl = '' + img
# 列印結果
#print ("imgurl=%s" % imgurl)
download(imgurl, img)
except:
print ("資料庫查詢錯誤!")
# 關閉資料庫連線
db.close()
python 連線資料庫
原文 原文1 安裝mysql python pip install mysql python dome1 def db mange db bank conn none try 開啟資料庫連線 conn mysqldb.connect localhost root 123456 db bank 獲取操...
Python連線資料庫
usr bin env python coding utf 8 import sys reload sys sys.setdefaultencoding utf 8 import pymysql import pymysql.cursors usr bin env python coding utf...
python連線資料庫
1 安裝mysql ubantu下安裝不撰述 2 安裝python版本的mysql開發包 sudo apt get install python mysqldb3 編寫python usr bin python coding utf 8 import mysqldb 引入mysqldb包 開啟資料庫...