You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
469 B
18 lines
469 B
# coding:utf8
|
|
|
|
|
|
# def mySql():
|
|
# try:
|
|
# db = pymysql.connect(host='172.26.28.30', user='crawl', passwd='crawl13', db='test', port=3306,
|
|
# charset='utf8', cursorclass=pymysql.cursors.DictCursor)
|
|
# if db.open:
|
|
# print("MySQL连接成功!")
|
|
# else:
|
|
# print("MySQL连接失败!")
|
|
# db.close()
|
|
# except:
|
|
# print(traceback.format_exc())
|
|
|
|
print("这是一个测试!!")
|
|
|
|
|