python实现mysql的单引号字符串过滤方法

本文实例讲述了python实现MysqL的单引号字符串过滤方法分享给大家供大家参考,具体如下:

最主要用这个函数,可以处理MysqLdb.escape_string(content).

class Guide:
 def __init__(self):
  self.time_zone = 7*3600 #设置时区
  self.Now_time = int(time.time()) + self.time_zone #取得当前时间
   #本地
  self.gamedb_model = MysqL_conn.MysqLHelper(config.game_db['host'],config.game_db['user'],config.game_db['password'],config.game_db['db_name'],config.game_db['port'])
  #远程
  self.remote_model = MysqL_conn.MysqLHelper(config.remote_db['host'],config.remote_db['user'],config.remote_db['password'],config.remote_db['db_name'],config.remote_db['port'])
  #game center
  self.commdb_model = MysqL_conn.MysqLHelper(config.comm_db['host'],config.comm_db['user'],config.comm_db['password'],config.comm_db['db_name'],config.comm_db['port'])
 def index(self):
  #拿到第二天未登陆的用户
  for line in open("2014.3.20_global_ips.txt"):
   list = line.split('||')
   l = len(list)
   if l == 3:
    info = ''
   else:
    info = MysqLdb.escape_string(list[3])
   self.commdb_model.insert('ip_area',{'start_ip':list[0],'end_ip':list[1],'area':list[2],'info':info})
if __name__ =="__main__":
 keep = Guide()
 keep.index()

希望本文所述对大家python程序设计有所帮助。

相关文章

方案一 代码 在Python中,可以使用wave模块来读取双通道(立...
简介 一个用python实现的科学计算,包括: 1、一个强大的N维...
使用爬虫利器 Playwright,轻松爬取抖查查数据 我们先分析登...
轻松爬取灰豚数据的抖音商品数据 调用两次登录接口实现模拟登...
成功绕过阿里无痕验证码,一键爬取飞瓜数据 飞瓜数据的登录接...
一文教你从零开始入门蝉妈妈数据爬取,成功逆向破解数据加密...