91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么關閉warning信息提示

發布時間:2021-09-15 17:59:06 來源:億速云 閱讀:206 作者:chen 欄目:MySQL數據庫

本篇內容介紹了“Python怎么關閉warning信息提示”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

背景
在使用 python MySQLdb 執行sql 命令的時候,如果執行結果含有warning,則會被寫入到 stderr 展示到終端命令行。其實這些warning提示信息沒有任何實際的作用。
root@rac3:~/scripts# >python set_ms.py -m 10.0.2.15:3306 -s 10.0.2.6:3308 
Begin to set Replicate on slave 10.0.2.6:3308
set_ms.py:35: Warning: Slave already has been stopped
  ret=cursor.execute(SQL)
set_ms.py:35: Warning: Sending passwords in plain text without SSL/TLS is extremely insecure.
  ret=cursor.execute(SQL)
set_ms.py:35: Warning: Storing MySQL user name or password information in the master info repository is not secure and is therefore not recommended. Please consider using the USER and PASSWORD connection options for START SLAVE; see the 'START SLAVE Syntax' in the MySQL Manual for more information.
  ret=cursor.execute(SQL)
Success : CHANGE MASTER TO MASTER_HOST='10.0.2.15',MASTER_USER='slave',MASTER_PASSWORD='xxxx',MASTER_PORT=3306,MASTER_LOG_FILE='mysql-bin.000002', MASTER_LOG_POS=314;
那我們該怎么解決呢?
Python 提供了warnings模塊,通過該模塊控制系統warning 的輸出形式,關閉或者打開。舉個例子 
1 將  MySQLdb.Warning warnings 傳入exceptions 以便通過 try  catch 獲取exception 進而對其進行業務邏輯處理。
   filterwarnings('error', category=MySQLdb.Warning) 
 如果設置為error 則需要在代碼中引入 except機制
  try:
        execSQL ...
   except MySQLdb.Warning, e:
        print "MySQLdb Warning", e

 2 設置為warning 為 ignore ,忽略所有warning 信息。
  filterwarnings('ignore', category = MySQLdb.Warning)

代碼實現
import MySQLdb
import MySQLdb.cursors
from warnings import filterwarnings
filterwarnings('ignore', category = MySQLdb.Warning)
def execSql(SQL,IP,PORT,USER,PWD):
  '''####exec_sql####'''
  try:
      db=MySQLdb.connect(host=IP,user=USER,passwd=PWD,db='test',port=int(PORT),charset="utf8")
      cursor=db.cursor(cursorclass=MySQLdb.cursors.DictCursor)
  except MySQLdb.Error,e:
      print "connection failed!Error %d:%s"%(e.args[0],e.args[1])
      sys.exit(9)

Python怎么關閉warning信息提示

“Python怎么關閉warning信息提示”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

商河县| 慈利县| 柘城县| 富宁县| 温州市| 湾仔区| 砀山县| 临江市| 江口县| 京山县| 阳城县| 温宿县| 邹平县| 旬邑县| 大厂| 平原县| 晴隆县| 英超| 嘉义市| 乾安县| 偏关县| 孝感市| 南昌市| 永修县| 洮南市| 蕉岭县| 商水县| 慈利县| 唐山市| 康乐县| 伊川县| 盱眙县| 临沧市| 章丘市| 镇远县| 沽源县| 河池市| 彭阳县| 汤原县| 马山县| 兴海县|