pip安装 pip install pytest-html 编写脚本 import pytest class TestClass(object): def test_one(self): x = "this" assert 'h' in x def test_two(self): x = "hell ...
分类:
其他好文 时间:
2020-07-23 16:50:29
阅读次数:
121
创建app (添加到installed apps)python manage.py startapp test_worm依赖文件生成pip freeze > requirements.txt依赖文件安装pip install -r requirements.txt添加静态资源,在settings.p ...
分类:
编程语言 时间:
2020-07-22 11:18:40
阅读次数:
84
步骤 1、安装jdk2、安装node和npm3、安装android sdk4、安装appium5、安装pip及appium-python-client 脚本#!/bin/bash echo "install jdk!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! ...
分类:
移动开发 时间:
2020-07-20 15:31:02
阅读次数:
92
flask中一般使用flask-sqlalchemy来操作数据库,使用起来比较简单,易于操作。 安装 pip install flask-sqlalchemy 配置 配置选项说明 SQLALCHEMY_DATABASE_URI 连接数据库。示例:mysql://username:password@h ...
分类:
数据库 时间:
2020-07-19 23:38:25
阅读次数:
110
安装 pip install alembic 初始化 alembic init alembic 修改配置alembic.ini sqlalchemy.url = driver://user:pass@localhost/dbname 修改env.py import sys from logging. ...
分类:
数据库 时间:
2020-07-19 11:23:58
阅读次数:
76
-- 安装方法1 下载httplib库:https://pypi.org/project/httplib2/#downloads httplib2-0.18.1-py3-none-any.whl 安装:pip install xx.whl 安装方法2 下载httplib库:https://pypi. ...
分类:
编程语言 时间:
2020-07-15 13:09:42
阅读次数:
144
Python第三方库的管理 python的一项优点是有大量的第三方库可以使用。 第三方库网站 https://pypi.org/ 第三方库安装:pip工具 如何使用pip pip install 包名(库名) 注意:如果有多个python环境的情况下,可能需要使用pip3 举例 安装pymysql: ...
分类:
编程语言 时间:
2020-07-15 12:48:45
阅读次数:
70
一、python21.安装源 yum -y install epel-release2.安装pip yum install python-pip3.对安装好的pip进行升级 pip install --upgrade pip (注意是两个短横线--)到这里pip 安装完成,即/usr/bin 目录下 ...
分类:
其他好文 时间:
2020-07-15 01:23:45
阅读次数:
76
Flask-Limit详细说明 在flask项目中我们需要对全部或者一部分接口进行限制,又不想造轮子,那怎么办呢? 所以这就是flask-limit出现的原因,不过对于相对复杂的需求,还是自己造轮子吧! 安装与简单使用 安装:pip install Flask-Limiter 快速开始: from ...
分类:
其他好文 时间:
2020-07-10 20:53:33
阅读次数:
115
概述 ansible 当前主流的批量配置管理工具,相比于saltstack 它是无agent 模式,基于ssh 去远程管理主机。有密码和密钥两种方式远程认证方式。 安装 yum -y install ansible (前提是有epel 源,如果没有需要安装) pip install ansible ...
分类:
其他好文 时间:
2020-07-10 13:45:45
阅读次数:
79