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.
10 lines
213 B
10 lines
213 B
|
1 week ago
|
# -*- coding: utf-8 -*-
|
||
|
|
# 票 03:pymysql 可用性检查
|
||
|
|
import sys
|
||
|
|
try:
|
||
|
|
import pymysql
|
||
|
|
print('pymysql OK', pymysql.__version__)
|
||
|
|
except ImportError as e:
|
||
|
|
print('pymysql MISSING:', e)
|
||
|
|
sys.exit(1)
|