随笔分类 -  python实战课程

摘要:一,安装requests 1,用pip安装 (venv) liuhongdi@192 news % pip3 install requests 2,查看所安装库的版本: (venv) liuhongdi@192 news % pip3 show requests Name: requests Ver 阅读全文
posted @ 2024-02-21 16:01 刘宏缔的架构森林 阅读(62) 评论(0) 推荐(0) 编辑
摘要:一,安装requests 1,用pip安装 (venv) liuhongdi@192 news % pip3 install requests 2,查看所安装库的版本: (venv) liuhongdi@192 news % pip3 show requests Name: requests Ver 阅读全文
posted @ 2024-02-21 12:14 刘宏缔的架构森林 阅读(81) 评论(0) 推荐(0) 编辑
摘要:一,官方文档: https://docs.python.org/zh-cn/3/library/json.html 二,json与字典的相互转化 1,字典转json字符串 1 2 3 4 5 6 7 import json # 字典转json d = dict(name='Tom', age=2, 阅读全文
posted @ 2024-02-20 22:04 刘宏缔的架构森林 阅读(31) 评论(0) 推荐(0) 编辑
摘要:一,安装requests 1,用pip安装 (venv) liuhongdi@192 news % pip3 install requests 2,查看所安装库的版本: (venv) liuhongdi@192 news % pip3 show requests Name: requests Ver 阅读全文
posted @ 2024-02-20 16:26 刘宏缔的架构森林 阅读(94) 评论(0) 推荐(0) 编辑
摘要:一,安装SQLAlchemy 1,用pip安装 (venv) [liuhongdi@img news]$ pip3 install sqlalchemy 2,安装完成后查看已安装的版本: (venv) [liuhongdi@img news]$ pip3 show sqlalchemy Name: 阅读全文
posted @ 2024-02-19 18:23 刘宏缔的架构森林 阅读(55) 评论(0) 推荐(0) 编辑
摘要:一,生成目录和生成配置文件 创建目录和配置文件 [liuhongdi@img news]$ mkdir conf [liuhongdi@img news]$ cd conf/ [liuhongdi@img conf]$ vi conf.yaml [liuhongdi@img conf]$ more 阅读全文
posted @ 2024-02-19 12:44 刘宏缔的架构森林 阅读(99) 评论(0) 推荐(0) 编辑