
Python
TianXiaPy
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python列表转换为字典
如何将两个列表组合生成字典?原创 2019-06-22 10:29:07 · 10022 阅读 · 0 评论 -
智能家居Series
安装home assistant工具 安装方法如链接 https://home-assistant-china.github.io/docs/installation/ 其中,包含Windows10,Linux等系统安装方法。 配置文件修改参考信息如链接 https://home-assistant-china.github.io/docs/configuration/ ...原创 2019-06-22 15:10:00 · 215 阅读 · 0 评论 -
attr库
代码展示: @attr.s(slots=True, frozen=True)#https://www.jianshu.com/p/2140b519028d class Context: """The context that triggered something.""" user_id = attr.ib(#attr.ib则是快速对属性进行定义的方法 ty...原创 2019-07-06 22:05:43 · 847 阅读 · 1 评论 -
typing库
typing库typing.py中所有类型定义如下: __all_ = [ # Super-special typing primitives. 'Any', 'Callable', 'ClassVar', 'Generic', 'Optional', 'Tuple', 'Type', 'TypeVar', 'Union', #ABCs (from collections.abc). 'Abstr...原创 2019-07-28 14:25:22 · 705 阅读 · 0 评论