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
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 2188
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 735
Python3 获取安卓设备列表 import re import os def get_devices(): """ 获取设备列表 :return: 设备列表 """ devices_info = os.popen('adb devices') devices continue reading 软件测试 zhuoyuebiji 2019/6/14 713
Windows下,cmd 运行 python 脚本,选中文字就停止运行的解决办法 参考资料: https://jingyan.baidu.com/article/ce09321bb95dda2bff858f26.html 问题原因: cmd 里面,快速编辑模式会暂停程序 解决步骤: continue reading python zhuoyuebiji 2019/6/6 761
用 python 快速展示服务器的目录文件 将 web 服务器上当前目录下所有的文件(以及子目录)暴露给你所处网络的所有用户, python2: python -m SimpleHTTPServer 7777 (使用端口 7777 和 Python 2) python3: python -m http.server 77 continue reading python zhuoyuebiji 2019/6/6 487
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
Selenium 自动化测试 Chrome 大于 63 版本 不能重定向问题解决办法 Chrome 一些信息: Chrome 63 以后,浏览器默认屏蔽了重定向 Chrome 63 版本,设置了禁止更新,有些情况还是会更新到最新版本 解决过程: 在博客上查到 selenium 里 给 Chrome 启动加参数的方法:Sele continue reading 软件测试 zhuoyuebiji 2019/1/2 1735
Selenium Firefox geckodriver 下载 从selenium 3.0.0开始,要求 Firefox为48及以上版本。 geckodriver下载:https://github.com/mozilla/geckodriver/releases/ continue reading 软件测试 zhuoyuebiji 2018/12/19 782
Python3 读取含中文的 ini 配置文件 python3 读取含中文的 ini 配置文件 import configparser # 加载现有配置文件 conf = configparser.ConfigParser() # 含中文用 utf-8-sig,而不是 utf-8 conf.read("config.ini", continue reading python zhuoyuebiji 2018/10/20 1215