Centos7 之 python3,virtualenvwrapper, git, nginx, redis 源码安装 * 本篇所有命令均在 root 权限下执行 * 安装 python3 安装依赖包: yum -y install gcc gcc-c++ python36-devel mysql-devel yum -y install openssl-devel bzi continue reading centos zhuoyuebiji 2019/1/9 1589
用 python 快速展示服务器的目录文件 将 web 服务器上当前目录下所有的文件(以及子目录)暴露给你所处网络的所有用户, python2: python -m SimpleHTTPServer 7777 (使用端口 7777 和 Python 2) python3: python -m http.server 77 continue reading python zhuoyuebiji 2019/6/6 487
Windows下,cmd 运行 python 脚本,选中文字就停止运行的解决办法 参考资料: https://jingyan.baidu.com/article/ce09321bb95dda2bff858f26.html 问题原因: cmd 里面,快速编辑模式会暂停程序 解决步骤: continue reading python zhuoyuebiji 2019/6/6 761
Python3 获取安卓设备列表 import re import os def get_devices(): """ 获取设备列表 :return: 设备列表 """ devices_info = os.popen('adb devices') devices continue reading 软件测试 zhuoyuebiji 2019/6/14 713
Scylla 代理池 docs-zh: https://scylla.wildcat.io/zh/latest/ github: https://github.com/imWildCat/scylla/ Scylla 是一款高质量的免费代理 IP 池工具,仅支持 Python 3.6。特性 continue reading python zhuoyuebiji 2019/7/24 736
Python 和 django 学习资料收集 Django awesome(Django 优秀资源大全) https://github.com/haiiiiiyun/awesome-django-cn(源地址) https://github.com/yinzhuoqun/awesome-django-cn(备用地址) continue reading python zhuoyuebiji 2019/7/25 2192
Python3 pandas 读取 Excel、CSV #!/usr/bin/env python3 # -*- coding: utf-8 -*- """ @author: yinzhuoqun @site: http://zhuoqun.info/ @email: yin@zhuoqun.info @time: 2019/4/22 continue reading python zhuoyuebiji 2019/8/27 509
Pycharm 默认模版 File and Code Templates pycharm 默认的【新建】文件,格式想指定自己的一些信息,比如:编码、自己的信息、新建时间等,那么就需要改一下文件模板。 具体步骤是(我这里是 专业版,社区版未知): 1.【File】-->【Settings...】,打开设置界面 2. 在搜索框处,输入 File continue reading python zhuoyuebiji 2019/9/2 2246
Python3 requests 运行时提示 InsecureRequestWarning 整条错误日志: /Users/yinzhuoqun/.pyenv/joyoo/lib/python3.6/site-packages/urllib3/connectionpool.py:858: InsecureRequestWarning: Unverified HTTPS continue reading python zhuoyuebiji 2019/9/24 587
用百度搜索获取 IP 地址的归属地(已经失效) 思路:把 IP 地址当关键词拼上百度的搜索链接,然后用正则匹配想要的信息。 代码: import re import requests requests.packages.urllib3.disable_warnings() def get_ipv4(ip): continue reading python zhuoyuebiji 2019/9/24 372