Python类里的method, classmethod, staticmethod
测试两个框架的效率。逻辑相同,都是map "/" to handler,然后这个handler里render template index.html
(继承自base.html
),渲染模版都是用jinja2
使用python的urllib的urlopen一个https的api时,经常遇到这个错误。解决方案:
用uWSGI跑python的wsgi程序。
第一步:写一个自己的Python包,setup.py
:
趁刚写完这个项目,把一些学到的东西写一下。
Python's web framework is quite similar to each other, thanks to the WSGI standard, so the first time when you learn a new Python web development framework, there are a few essential things you should know, and those will help you to get started fast.
这些笔记是taken upon Prof. Philip Guo 的课程: CPython Interpreter source code.
有个Part-Time项目将来可能要用到这个语言检测模块,把编译步骤记下来。
今天一台跑数据中转的服务器cpu满了,这个服务器的主要任务是接收网络数据包,用protobuf解包,取出数据做xxoo的事后,封成一个新的包发给后端服务器。
msgpack 是一个序列化结构体的包。