Python 库推荐

AttrDict
字典转换为可以用属性访问的模式

1
2
3
4
5
6
> from attrdict import AttrDict
> a = AttrDict({'foo': 'bar'})
> a.foo
'bar'
> a['foo']
'bar'

Web 框架

molten: 用于使用 Python 3.6 及更高版本构建 HTTP API 的最小,可扩展,快速且高效的框架。
responder:

Flask

Sanic

GitHub stars

Vibora

GitHub stars

实用工具

You-Get: 优酷、YouTube 等网站视频下载

lulu: 各网站视频下载,fork 自 you-get。其作者新开 Go 语言编写同功能库 annie

代码调试

icecream:打印调试,优化 print() 函数。

数据验证

voluptuous:数据验证库 GitHub stars

Shell

xonsh: xonsh 是一种 shell 语言和命令提示符。 与其他 shell 不同,xonsh 基于 Python,添加了额外的语法,可以轻松调用子进程命令,操作环境和处理文件系统。 xonsh 命令提示符为用户提供对 xonsh 语言的交互式访问。