【暂未解决】supervisorctl去运行Flask但出错:EOFError: EOF read where object expected
crifan 8年前 (2016-12-28) 5965浏览 0评论
(RunningFast) ➜ staging supervisorctl -c supervisor.conf restart runningfast_staging runningfast_staging: ERROR (not runn...
all programming language, C/C++/C#/VB/VBA/VB.NET/Python/Ruby/PHP/Go/Perl/……
crifan 8年前 (2016-12-28) 5965浏览 0评论
(RunningFast) ➜ staging supervisorctl -c supervisor.conf restart runningfast_staging runningfast_staging: ERROR (not runn...
crifan 8年前 (2016-12-13) 16729浏览 1评论
(RunningFast) ➜ stable pip install boto3 Collecting boto3 Retrying (Retry(total=4, connect=None, read=None, redirect=No...
crifan 8年前 (2016-11-10) 13949浏览 0评论
折腾: 【已解决】Flask中SQLAlchemy的pagination传入page为2时出错:LookupError “” is not among the defined enum values 期间,看到通过pip去下载...
crifan 8年前 (2016-11-09) 2525浏览 0评论
折腾: 【已解决】Python的Flask中自定义的枚举对象序列化为JSON时出错:TypeError is not JSON serializable 期间,想要去寻找,Python中是否有已经预定义好的,已实现的,类似于IntEnum的Strin...
crifan 8年前 (2016-11-09) 4730浏览 1评论
代码: def jsonToStr(jsonDict, indent=2): return json.dumps(jsonDict, indent=2, ensure_ascii=False) 去把一个对象,其中属性中包含一个自定...
crifan 8年前 (2016-11-05) 2714浏览 0评论
折腾: 【已解决】Python中给枚举添加内置函数或属性 期间,看到有: 8.13. enum — Support for enumerations — Python 3.5.2 documentation >>> class...
crifan 8年前 (2016-11-04) 4247浏览 0评论
Python中已有一个枚举类型: import enum class TipType(enum.Enum): NoTip = “NoTip” TenPercent = “TenPercent...
crifan 8年前 (2016-11-01) 8673浏览 0评论
之前在Flask中创建了一个全局变量,用于保存当前某个用户是否已连接webcoket gWsDict[userId] = ws 保存后为: DEBUG in Websocket [/root/RunningFast/stag...
crifan 8年前 (2016-10-31) 9724浏览 0评论
折腾: 【已解决】Flask的虚拟环境中把gunicorn的版本从19降低为18 期间,需要了解: pip 安装指定版本 参考: pip 安装特定版本的 Python 包 pip install -v pycrypto==2.3 pip指定安装包版本...
crifan 8年前 (2016-10-29) 8516浏览 1评论
想要实现很方便的,把已有的印象笔记中的帖子,发布到Wordpress 最好能实现: 可以指定发布日期为原帖的创建日期 设置对应的slug 支持图片直接发布,最好可以重命名图片名字,否则都是默认的截图,估计名字会重复 之前找过各种办法,都不够完美。 最...