- 博客(17)
- 问答 (1)
- 收藏
- 关注
原创 rsa&md5
RSA公钥加密pip3 install pycryptoimport jsonimport requestsimport base64from Crypto.PublicKey import RSAfrom Crypto.Cipher import PKCS1_v1_5key = ‘xxxxx’rsa_key = '-----BEGIN PUBLIC KEY---...
2019-11-12 14:17:15 235
原创 前端基础
1、标签 1.1、排版标签标签名字 定义 说明 <h> </h> <p> </p> <hr /> <br /> <div> </div> <span...
2018-06-13 17:12:57 196
原创 unittest控制case执行顺序
1、名字改成test_a_xxx, test_b_xxx格式,会分别执行a, b, ....2、 suite = unittest.TestSuite() suite.addTest(类名('函数名1')) suite.addTest(类名('函数名2')) ...... runner = unittest.TextTestRunner(...
2018-03-14 14:10:28 2198
原创 Python multiprocessing.Queue() 和 queue.Queue区别
Queue.Queue是进程内非阻塞队列。multiprocess.Queue是跨进程通信队列。多进程前者是各自私有,后者是各子进程共有。
2018-01-31 09:25:08 4392
原创 BeautifulSoup
from bs4 import BeautifulSoupimport requestsurl = 'https://book.douban.com/subject/1770782/'response = requests.get(url).textsoup = BeautifulSoup(response, 'html.parser')#获取div中class为intro的信息...
2018-01-30 15:15:36 159
原创 yaml和ini
yaml冒号: ------>字典横杠-------->列表操作:open函数打开yaml文件,f.read读取,yaml.load格式化例:yaml_file = './a.yaml'with open(yaml_file, 'r') as f: contents = f.read()re...
2018-01-30 11:14:26 503
原创 requests接口测试
get import requests import json url= 'https://m.douban.com/rexxar/api/v2/muzzy/columns/10008/items?start=0&count=3' response = requests.get(url) contents = json.loads(r...
2018-01-29 16:41:43 838
原创 mac安装virtualenv
1、安装1)pip3 install virtualenv2)pip3 install virtualenvwrapper virtualenvwrapper是virtualenv的拓展包2、环境变量 1)vim ~/.bash_profile 2)输入 export VIRTUALENVWRAPPER_PYTH...
2018-01-29 16:40:41 217
原创 windows远程连接阿里云ubuntu(mstsc)
本地windows远程桌面连接阿里云Ubuntu 16.04服务器 1、windows安装securecrt 2、securecrt ssh连接阿里云服务器 3、apt-get update 4、安装xrdp:apt-get install xrdp-->回车-->输入"y"-->回车,安装完成 (xrdp: An open so...
2018-01-23 14:25:20 5047
原创 appium+allure+pytest
1、环境搭建 brew install allure npm installappium pip3 install pytest pip3 install allure-pytest pip3 install pytest-allure-adaptor sudo pip3 install Appium-Python-Client...
2018-01-22 14:22:32 582
原创 random
random.random() -------取浮点数x,0<=x<1In [36]: random.random()Out[36]: 0.209811164981883In [37]: random.random()Out[37]: 0.9981253745428653In [38]: random.random()Out[38]: 0.3911322367559...
2018-01-16 15:34:36 193
原创 ip地址分类
ip地址的分类每一个IP地址包括两部分:网络地址和主机地址1 、A类IP地址一个A类IP地址由1字节的网络地址和3字节主机地址组成,网络地址的最高位必须是“0”,地址范围1.0.0.1-126.255.255.254二进制表示为:00000001 00000000 00000000 00000001 - 01111110 11111111 11111111 1111111...
2018-01-15 15:12:03 293
原创 selenium
1、搭建环境 1)安装python3+selenium brew install python3 pip3 install selenium(安装最新版) 或pip3 install selenium==版本号(安装指定版本号) 没有特殊要求安装最新版即可 2)下载chrome浏览器和chromedriver chromedri...
2018-01-10 10:51:31 306
原创 python基础
1、number, string, [], (), {}2、if, for, while3、class,def4、正则 pattern = r'\d+(.*?)\d+', re.match(pattern, string) re.search(pattern, string) a = '123abc123' r...
2018-01-07 16:52:13 215
原创 mysql基础
#连接mysqlmysql -h127.0.0.1 -p3306 -uroot -p#查看数据库show databases;#创建数据库create database xxx;#删除数据库drop database xxx;#使用数据库use xxx;#显示数据库中的表show tables;#创建表create t...
2017-03-24 18:11:12 669
空空如也
vscode,我找到一个元素后添加事件,没有命令行提示,为啥呀。
2021-11-09
TA创建的收藏夹 TA关注的收藏夹
TA关注的人