上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: https://www.cnblogs.com/sui776265233/p/11348169.html 开源的平台,为小服务日志监控统一管理 pip install --upgrade sentry-sdk==0.10.2 pip install --upgrade 'sentry-sdk[fla 阅读全文
posted @ 2020-08-05 16:12 悠然采 阅读(475) 评论(0) 推荐(0) 编辑
摘要: ##问题增加类型限制 NameError: name 'List' is not defined def twoSum(self, nums: List[int], target: int) -> List[int]: 解决 : from typing import List 阅读全文
posted @ 2020-08-05 16:09 悠然采 阅读(437) 评论(0) 推荐(0) 编辑
摘要: ##问题 目录下执行flask db init ##结果 抛出KeyError: 'migrate’这个问题 ## 原因 初始化Migrate对象时没有加db 解决: appfactory.py import extensions.py `def create_app(): registerExte 阅读全文
posted @ 2020-08-04 15:49 悠然采 阅读(604) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/sanshengshui/p/9750478.html https://www.cnblogs.com/shihuc/p/5118240.html 阅读全文
posted @ 2020-07-22 15:44 悠然采 阅读(90) 评论(0) 推荐(0) 编辑
摘要: #pipenv install -r requirements.txt 时遇到错误: Command "python setup.py egg_info" failed with error code 1 解决方法是更新 setuptools 和 pip: pip install --upgrade 阅读全文
posted @ 2020-07-08 17:45 悠然采 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #文件 .flaskenv中 DATABASE_URI = 'mysql://username:password@server/db' flask db init 报错 ImportError: No module named 'MySQLdb'。 既然缺少 MySQLdb 这个模块,执行 pip 阅读全文
posted @ 2020-07-08 15:49 悠然采 阅读(798) 评论(0) 推荐(0) 编辑
摘要: #简介 目前多进程方式实现的服务器端,一次创建多个工作子进程来给客户端提供服务, 但是创建进程会耗费大量资源,导致系统资源不足 IO复用技术就是让一个进程同时为多个客户端端提供服务 IO复用技术 之 Select、Poll、Epoll https://baijiahao.baidu.com/s?id 阅读全文
posted @ 2020-07-08 11:31 悠然采 阅读(144) 评论(0) 推荐(0) 编辑
摘要: #1.Marshmallow.ModelSchema 报错 AttributeError: 'Marshmallow' object has no attribute 'ModelSchema' `from flask_sqlalchemy import SQLAlchemy from flask_ 阅读全文
posted @ 2020-06-10 21:23 悠然采 阅读(2360) 评论(0) 推荐(0) 编辑
摘要: mitmproxy 一 、 mitmproxy介绍 mitmproxy 就是用于 MITM 的 proxy,MITM 即中间人攻击(Man-in-the-middle attack)。 不同于 fiddler 或 wireshark 等抓包工具,通过载入自定义 python 脚本二次开发实现高度定制 阅读全文
posted @ 2020-06-02 17:16 悠然采 阅读(451) 评论(0) 推荐(0) 编辑
摘要: pip 包管理工具 virtualenv 虚拟环境管理工具 切换目录 virtualenvwrapper 虚拟环境管理工具加强版 pyenv python版本管理工具 修改环境变量 pyenv virtualenv 虚拟环境管理工具 pipenv 项目环境管理工具 pipx Python应用管理工具 阅读全文
posted @ 2020-05-15 16:22 悠然采 阅读(161) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页