python tinydb 源码阅读 2021-02-17 python TinyDB是一个小型,简单易用,面向文档的数据库;代码仅1800行,纯python编写。TinyDB项目大小刚好,学习它可以了解NOSQL 阅读更多
python argparse 源码阅读 2021-02-11 python http.server 可以使用 -h 查看帮助。这种自定义的命令行工具对用户使用程序非常有帮助,我们一起学习是如何实现命令工具的。 先看看展示: 1 2 3 4 5 6 7 8 9 10 11 12 阅读更多
python wsgiref 源码阅读 2021-02-04 python python web开发中http请求的处理流程通常是: web-browser <-> web-server <-> wsgi <-> web-application, 我们学习过基于bottle实现的web-applic 阅读更多
python http 源码阅读 2021-01-28 python 上篇文章在阅读bottle源码时候,没有详细介绍bottle如何处理http请求,这需要先阅读python-http源码。本周我们一起看看p 阅读更多
Bottle 源码阅读 2021-01-21 python bottle是一个简单的python-web服务框架,可以和其它WSGI服务组合提供web服务。它最大的特色是所有代码都在单个文件中,这样限 阅读更多