随笔分类 -  python

摘要:sudo pkill -f uwsgi -9 uwsgi --ini mysite.uwsgi.ini 阅读全文
posted @ 2019-06-10 11:30 MvloveYouForever 阅读(164) 评论(0) 推荐(0) 编辑
摘要:频道在PyPI上可用 - 要安装它,只需运行: 参照:https://channels.readthedocs.io/en/latest/introduction.html pip install -U channels安装 channels_redis pip install channels_r 阅读全文
posted @ 2019-03-26 08:45 MvloveYouForever 阅读(242) 评论(0) 推荐(0) 编辑
摘要:1。准备工作 删除各app/migrations/下的以数字开头的数据库同步日志文件: 假设你使用的是Pycharm,我们要生成环境包: 阿里云安全组的配置,也就是打开80和22端口 2、正式部署 workon online 注: 此时pip install -r requirements 还是失败 阅读全文
posted @ 2019-03-18 19:30 MvloveYouForever 阅读(315) 评论(0) 推荐(0) 编辑
摘要:# 添加 Fruit.objects.create(name='Apple') # 更新 UserProfile.objects.filter(user=admin).update(**{'online':False,'channel':''}) # 保存或者更新 defaults 用来更新/保存 user=admin用来查询 UserProfile.objects.update_o... 阅读全文
posted @ 2019-03-13 10:21 MvloveYouForever 阅读(103) 评论(0) 推荐(0) 编辑
摘要:def the_one(func): '''自定义 验唯一证在线 装饰器''' def check_login_status(request): if request.session.get('qq', None): try: hert = request.session.get('hert', None) ... 阅读全文
posted @ 2019-03-12 11:43 MvloveYouForever 阅读(334) 评论(0) 推荐(0) 编辑
摘要:1、dwebsocket 2、等框架都是错误的 3、 django/channels 才是正确姿势 555 4、 pip install -U channels 完成后,您应该添加channels到您的 INSTALLED_APPS设置: INSTALLED_APPS = ( 'django.con 阅读全文
posted @ 2019-03-09 01:05 MvloveYouForever 阅读(193) 评论(0) 推荐(0) 编辑
摘要:总结数据库操作流程 编辑 models.py 文件,改变模型。 运行 python manage.py makemigrations 为模型的改变生成迁移文件。 运行 python manage.py migrate 来应用数据库迁移 创建管理员账号 创建测试 运行测试 阅读全文
posted @ 2019-03-07 21:53 MvloveYouForever 阅读(113) 评论(0) 推荐(0) 编辑
摘要:1、更新了pip之后还提示更新 2、时间比当前时间少8小时问题 3、 python manage.py migrate 出错之后,一直修复不了解决办法 删除 migrations 下除了 __init__.py以外的其他文件 删除数据库中 django_migrations 表中,导致问题的模块的 阅读全文
posted @ 2019-03-07 11:43 MvloveYouForever 阅读(148) 评论(0) 推荐(0) 编辑
摘要:easy_install -U pip 阅读全文
posted @ 2018-07-25 13:28 MvloveYouForever 阅读(78) 评论(0) 推荐(0) 编辑
摘要:1、生成二级域名,在阿里云的域名管理中,解析域名添加记录生成二级域名 2、添加ssl 确定等待审核 3、部署网站到“服务器” ① 压缩 项目文件夹 并 上传到 /var/wx , 解压 ② 切换到项目文件下: pyenv local '环境' --> 设置python环境 注:pyenv versi 阅读全文
posted @ 2018-07-24 20:05 MvloveYouForever 阅读(239) 评论(0) 推荐(0) 编辑
摘要:NAME="identifyImg_uwsgi.init" if [ ! -n "$NAME" ];then echo "no arguments" exit; fi echo $NAME ID=`ps -ef | grep "$NAME" | grep -v "$0" | grep -v "grep" | awk '{print $2}'` e... 阅读全文
posted @ 2018-05-02 15:31 MvloveYouForever 阅读(162) 评论(0) 推荐(0) 编辑
摘要:from json_response import JsonResponse from aip import AipOcr import os import time BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) OUT = "/static/upload" ABS_OUT = os.path.jo... 阅读全文
posted @ 2018-05-02 15:04 MvloveYouForever 阅读(1034) 评论(0) 推荐(0) 编辑
摘要:注:安装pyenv 后要重新打开会话 或者 source ~/.bash_profile useradd mvly // 创建用户 passwd mvly // 设置密码 virtualenv: 然后 直接在某个项目下。pyenv local ident 可切换到对应的环境 安装:Nginx 安装m 阅读全文
posted @ 2018-03-22 23:47 MvloveYouForever 阅读(188) 评论(0) 推荐(0) 编辑
摘要:1、由于把venv给忽略了,所以显示找不到django。 2、在.gitignore中加入了 venv\会导致,在此git目录下,用pycharm 创建的项目会自动在 file types中的地方加上 venv; 因此要手动去掉pycharm中的 “venv;” 哦。.gitignore中的可以不用 阅读全文
posted @ 2018-03-21 20:16 MvloveYouForever 阅读(1055) 评论(0) 推荐(0) 编辑
摘要:1、在某个位置安装一个虚拟环境 2、项目运行是配置virtualenv生成的环境 3、重启terminal 安装依赖: exp => pip install django 阅读全文
posted @ 2018-03-15 12:31 MvloveYouForever 阅读(529) 评论(1) 推荐(0) 编辑
摘要:1、安装django -> pip install django 某些时候竟然需要FQ 2、JsonResponse 需要 (不需要了,django.http自带) pip install django-json-response 2、安装mysql模块 (python 3) pip install 阅读全文
posted @ 2018-03-11 14:57 MvloveYouForever 阅读(162) 评论(0) 推荐(0) 编辑
摘要:1、pip is already installed if you're using Python 2 >=2.7.9 or Python 3 >=3.4 binaries downloaded from python.org, but you'll need to upgrade pip. 2、U 阅读全文
posted @ 2018-01-15 18:30 MvloveYouForever 阅读(138) 评论(0) 推荐(0) 编辑