Python解密Chrome的Cookies文件 2022年8月3日 | python 桌面程序或爬虫有时候很需要免登陆获取cookies,想着应用怎么能直接读取到cookie文件,查了后发现Chrome的Cookies文件是加密的. 按照网上找了半天Cookies的路径都不对,新版本位置也变了,Cookies是在Network下. 原理是直接读取chrome保存Coo…… 阅读全文
rust和python交互pyo3(一) 2022年3月12日 | python rust rust和python交互pyo3(1) pyo3 需要python3.7以上的版本 pip install maturin # 新建文件夹后:初始化 maturin init --bindings pyo3 # 开发编译安装,就可以测试用python调用了 maturin develop # release版本编译,只会编译,不会更新安装到python环境 maturin build --release 生成的pyproject.toml中requir…… 阅读全文
python验证码在线识别 2022年3月10日 | python import requests import base64 import json from IPython.core.display import Image # appKey :2e35010c-a759-11eb-8dd8-7429af540200 # appSecret:632b36755e7963fbdb61b2529e410bc4 # http://api.yunshuck.com/api/captcha/simple-captcha # type:603 数字加字母组合验证码 # type:601 数字验证码 # type:604 数字计算验证码 headers ={} headers['Content-Type'] = 'application/json' headers['appKey'] = '8961d10c-aa79-11eb-942c-7429af540200' headers['appSecret'] = 'baec542e97c499f75c419ea935079d00' headers['Content-Type'] = 'application/json' rst_code = 0 while(rst_code==0):…… 阅读全文
Jupyter Notebook使用Anaconda虚拟环境 2021年8月4日 | python Jupyter Jupyter Notebook使用Anaconda虚拟环境 第一步:安装ipykernel: 法一: 1.进入虚拟环境 Windows:在Anaconda Prompt, 运行 activate myenv macOS & Linux, 在Terminal, 运行 source activate myenv 安装ipykernel:conda install ipykernel 法二: 在任何环境下都可以直接运行conda install -n myenv ipykern…… 阅读全文
Anaconda & conda 配置镜像 2021年8月4日 | python anaconda Anaconda & conda 配置镜像 Anaconda 安装包可以到 https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/ 下载。 各系统都可以通过修改用户目录下的 .condarc 文件。Windows 用户无法直接创建名为 .condarc 的文件,可先执行 conda config --set show_channel_urls yes 生成该文件之后再修改。 channels: - defaults show_channel_urls: true default_channels: - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2 custom_channels: conda-forge: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud msys2: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud bioconda: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud menpo: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud pytorch: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud simpleitk: https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud 即可添加 Anaconda Python 免费仓库。 运行 conda clean -i 清除索引缓存,保证用的是镜像站提供的索…… 阅读全文