Python
文章平均质量分 74
NFTDigger
(PMP、OCA、MCSD)地道持续的努力才是到达目标的唯一正确方法。
展开
-
python版电报API接入从零到一(有彩蛋)
申明:本文仅作试验研究用,不对参考本文操作产生的各种结果承担任何责任。原创 2023-04-26 14:47:08 · 3530 阅读 · 0 评论 -
Anaconda常用命令
Anaconda常用命令原创 2022-09-13 17:17:31 · 520 阅读 · 0 评论 -
从零到一python爬虫实战:框架选择>查找爬虫参数>写代码>打包运行
最近用了三天的零碎时间写了一个GEM的NFT稀有度排名的爬虫。从框架选择到打包好进入正式服务器运行,踩坑填坑费了一些周折,特此记录。原创 2022-08-27 21:46:12 · 530 阅读 · 0 评论 -
PyInstaller打包时报错No module named ‘Crypto.Math‘ 和The ‘cryptography‘ distribution was not found的解决办法
pyinstaller -F XXX.py时报错,打包失败。No module named ‘Crypto.Math’ 错误解决错误信息如下:INFO: Loading module hook "hook-Crypto.py"...Traceback (most recent call last): File "<string>", line 2, in <module>ModuleNotFoundError: No module named 'Crypto.Mat.原创 2021-11-25 19:18:31 · 1816 阅读 · 0 评论 -
PyInstaller指定打包的Python版本
前言:如果PyInstaller 的打包版本与开发环境的版本不一致,比如打包版本比开发环境的低,就会出现不能Import某个模块的问题。例如:ImportError: cannot import name ‘Final’ from ‘typing’。这个时候需要使用某个特别的Python版本去打包。1 安装指定Python版本的PyInstaller这里要确定Python版本。# 通常的PyInstaller安装方式pip install pyinstaller# 安装Python2.x的P.原创 2021-10-27 16:20:51 · 12634 阅读 · 0 评论 -
Gunicorn简介、安装、配置、启动
文章目录1 简介2 安装3 配置与启动3.1 命令行配置参数3.2 python文件配置参数4. 服务重启、退出等4.1 获取Gunicorn进程树4.2 重启Gunicorn进程4.3 优雅停止Gunicorn进程1 简介Gunicorn“绿色独角兽”是一个被广泛使用的高性能的Python WSGI UNIX HTTP服务器,移植自Ruby的独角兽(Unicorn )项目,使用pre-for...原创 2020-03-13 23:17:55 · 39615 阅读 · 1 评论