-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb-pymysql.py
51 lines (40 loc) · 1.49 KB
/
web-pymysql.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import gevent
from gevent import monkey
from gevent.pywsgi import WSGIServer
import redis, pymysql, json, logging, logging.handlers
monkey.patch_all()
LOG_LEVEL = logging.DEBUG
LOG_FORMAT = '[%(levelname)1.1s %(asctime)s %(module)s:%(lineno)d] %(message)s'
SYSLOG = logging.handlers.SysLogHandler(address='/dev/log')
SYSLOG.setFormatter(logging.Formatter(LOG_FORMAT))
logging.basicConfig(format=LOG_FORMAT)
#logging.getLogger().addHandler(SYSLOG)
logging.getLogger().setLevel(LOG_LEVEL)
global r
r = redis.StrictRedis(host="127.0.0.1", port=6379, db=0)
def redis(response):
global r
response["redis"] = r.info()
def mysql(response):
con = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='mysql', db='mysql')
cur = con.cursor()
cur.execute("SELECT Host FROM user WHERE User = 'root'")
response["mysql"] = []
for r in cur.fetchall():
response["mysql"].append(r[0])
cur.close()
con.close()
def application(env, start_response):
if env["PATH_INFO"] == '/':
response = {}
g1 = gevent.spawn(redis, response)
g2 = gevent.spawn(mysql, response)
gevent.joinall([g1, g2])
start_response("200 OK", [("Content-Type", "application/json")])
return [json.dumps(response)]
else:
start_response("404 Not Found", [("Content-Type", "application/json")])
return ["Not Found"]
if __name__ == "__main__":
logging.info('Listening on 8000...')
WSGIServer(('', 8000), application).serve_forever()