03 2020 档案
摘要:pip install xxx==版本号 pip freeze > requirements.txt // 将项目所依赖的包输出到指定的requirements.txtpip install -r requirements.txt 使用pip安装requirements.txt中依赖的文件
阅读全文
摘要:sudo apt install httpie pip install httpie http http://httpbin.org/get 语法高亮 http http://httpbin.org/get HTTP/1.1 200 OK Access-Control-Allow-Credentia
阅读全文
摘要:参考:正则表达式BREs,EREs,PREs的比较 https://blog.csdn.net/yufenghyc/article/details/51078107 首先正则表达式分为三类(man grep可以看到,分别是basic RegExs,extended RegExs,perl RegEx
阅读全文
摘要:wget wget http://httpbin.org/image/png wget -O test.png http://httpbin.org/image/png 以指定名字保存下载的文件 wget --limit-rate=20k test.png http://httpbin.org/im
阅读全文
摘要:爬虫: 数据的抓取 library: requests urllib pycurl Tools: curl wget httpie curl http://www.baidu.com 参数 说明 -A 设置user-agent curl -A "python" http://www.baidu.co
阅读全文
摘要:转载:https://blog.csdn.net/schinta/article/details/48442167 https://my.oschina.net/sweetdark/blog/208024 着色器语言:https://blog.csdn.net/u013467442/article/
阅读全文