随笔分类 - Python
摘要:import SimpleHTTPServer import SocketServer PORT = 8000 Handler = SimpleHTTPServer.SimpleHTTPRequestHandler httpd = SocketServer.TCPServer(("", PORT), Handler) print "serving at port", PORT httpd...
阅读全文
摘要:http://demo.pythoner.com/itt2zh/ch1.html#ch1-1 http://www.runoob.com/bootstrap/bootstrap-tutorial.html html编辑器:http://www.alibuybuy.com/posts/18329.ht
阅读全文
摘要:Python调用动态库的文件:pycall.py Python调用C++(类)动态链接库 需要extern "C"来辅助,也就是说还是只能调用C函数,不能直接调用方法,但是能解析C++方法。不是用extern "C",构建后的动态链接库没有这些函数的符号表。 g++编译生成动态库libpycall.
阅读全文