python
blime-4
分享写过的垃圾代码
展开
-
【转载】微信公众平台 token 验证失败 python3
原文链接微信官方文档是python2.7# -*- coding: utf-8 -*-# filename: handle.py import hashlibimport web class Handle(object): def GET(self): try: data = web.input() if len(data) == 0: return "hello, this is han转载 2021-05-05 12:00:34 · 298 阅读 · 0 评论 -
【bug 笔记 0001】sqlite3.OperationalError(‘near “(”: syntax error‘) in Google Colab
sqlite3.OperationalError(‘near “(”: syntax error’) in Google Colabbest solution:!sudo add-apt-repository -y ppa:dqlite/stable!sudo apt update!sudo apt-get install -y sqlite3!sqlite3 --versionimport sqlite3, osprint(sqlite3.sqlite_version_info)os._e原创 2021-01-22 13:59:07 · 513 阅读 · 1 评论 -
pyzero 实例 alien_run 设计文档
alien_run 设计文档游戏说明对flipped bird项目进行修改,增加了速度控制,背景音乐控制,速度提示,随机难度等功能玩法介绍键盘控制:↑ : 精灵向上运动↓ : 精灵加速向下运动← : 精灵向上运动,同时增加运动速度→ : 精灵向上运动,同时增加运动速度SPACE : 背景音乐暂停与播放参考资料Welcome to Pygame ZeroGames ...原创 2019-06-29 10:18:49 · 1135 阅读 · 0 评论 -
XPath 笔记
XPath 笔记文章目录XPath 笔记XPath 节点XPath 语法**最有用的路径表达式**:谓语(Predicates)选取未知节点选取若干路径XPath Axes(轴)XPath 运算符XPath 节点在 XPath 中,有七种类型的节点:元素、属性、文本、命名空间、处理指令、注释以及文档节点(或称为根节点)。详情(不过我觉得这里有点无聊,跳过)XPath 语法最有用的路径...原创 2019-07-24 19:22:41 · 378 阅读 · 0 评论 -
numpy 笔记
文章目录Numpy 属性Numpy索引Numpy array合并Numpy array分割不等分割Numpy copyNumpy 属性import numpy as npa = np.arange(15).reshape(3,5)print(a)print(a.shape)print(a.ndim)print(a.dtype.name)print(a.itemsize)print...原创 2019-07-20 13:33:04 · 122 阅读 · 0 评论 -
json 中的ensure_ascii=False
json 中的ensure_ascii=False转载自在使用json.dumps时要注意一个问题>>> import json>>> print json.dumps('中国')"\u4e2d\u56fd"输出的会是‘中国’ 中的ascii 字符码,而不是真正的中文。这是因为json.dumps 序列化时对中文默认使用的ascii编码.想输出...转载 2019-07-24 21:34:48 · 1709 阅读 · 0 评论 -
scrapy 随机请求头
scrapy 随机请求头在middlewares.py中加入class UserAgentDownloadMiddleware(object): USER_AGENTS = [ 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3...原创 2019-07-30 12:37:48 · 184 阅读 · 0 评论 -
The script scrapy is installed in ‘/home/xxx/.local/bin’ which is not on PATH. Consider adding this
The script scrapy is installed in ‘/home/xxx/.local/bin’ which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.解决方法:e...原创 2019-07-21 23:06:14 · 21725 阅读 · 2 评论