摘要:
NETSHARP框架下的微信开发说明 阅读全文
摘要:
docker下安装tomcat,gradle打包到tomcat下 阅读全文
摘要:
docker下安装tensorflow 阅读全文
摘要:
python下的orm使用SQLAlchemy比较多,用了一段时间感觉不顺手,主要问题是SQLAlchemy太重,所以自己写了一个orm,实现方式和netsharp类似,oql部分因为代码比较多,没有完全实现 下面是源代码 一,系统配置 configuration.py # !/usr/bin/py 阅读全文
摘要:
一:MySQLdb # !/usr/bin/python # -*- coding: UTF-8 -*- import MySQLdb import MySQLdb.cursors import configuration class DataAccess : conn = None cursor 阅读全文
摘要:
一、服务端 #!/usr/bin/python # -*- coding: UTF-8 -*- import socket import sys from thread import * HOST = '127.0.0.1' # Symbolic name meaning all available 阅读全文
摘要:
来源:http://blog.csdn.net/jianhong1990/article/details/41209493 1.源代码 connection=MySQLdb.connect( host="thehost",user="theuser", passwd="thepassword",db 阅读全文