用了一段时间的 python 的 django 框架,在修改 sqlite 数据库的时候遇到如下错误:django.db.utils.IntegrityError: NOT NULL constraint failed: new__ImageRecognition_answercx.user_id ...
分类:
数据库 时间:
2021-03-10 13:09:41
阅读次数:
0
from rest_framework.exceptions import ValidationError # ... raise ValidationError(detail="size must be either 'large' or 'small'") DRF catches these e ...
分类:
其他好文 时间:
2021-03-10 13:08:25
阅读次数:
0
一 资产入库处理 1.1 连接数据库 在192.168.100.101安装数据库,并给总控机授权可以操作,并创建一个autoserver的数据库,密码123456 settiing.py 配置数据库连接 DATABASES = { 'default': { 'ENGINE': 'django.db. ...
分类:
数据库 时间:
2021-03-09 13:41:36
阅读次数:
0
环境: python3.7 appiumv1.18.0 模拟器网易mumu 安卓版本6.0.1 appium inspector是appium自带的定位插件,支持id、xpath等定位方式 uiautomator是 Android-SDK 目录下携带的定位插件,优点是定位速度快,支持多属性定位,缺点 ...
分类:
移动开发 时间:
2021-03-09 13:19:29
阅读次数:
0
1.迁移数据库 生成迁移文件python manage.py makemigrations 执行迁移python manage.py migrate2.命令行启动项目(可自行添加端口号) python manage.py runserver3.批量导入所需库,前提是github主写好了文件 pip ...
分类:
其他好文 时间:
2021-03-09 13:18:13
阅读次数:
0
ModuleNotFoundError: No module named 'apt_pkg' Ubuntu18 从python3.6手动升级到python3.9后,apt update无法执行,显示没有apt_pkg模块。 查阅到四种解决方法,我是用的第三种。 第一种: # 创建一个软链接 cd / ...
分类:
其他好文 时间:
2021-03-08 14:14:27
阅读次数:
0
配置防火墙问题 最近在服务器上部署项目时遇到了用ip访问不了的问题, 在一个纯洁的unbantu环境中 需要先安装防火墙 sudo apt install firewalld 然后启动防火墙 systemctl restart firewalld 我出现了防火墙被锁定的提示 Failed to re ...
分类:
其他好文 时间:
2021-03-06 14:21:48
阅读次数:
0
阅读目录 一.GIL(全局解释器锁) GIL面试题如下 描述Python GIL的概念, 以及它对python多线程的影响?编写一个多线程抓取网页的程序,并阐明多线程抓取程序是否可比单线程性能有提升,并解释原因。 Guido的声明:http://www.artima.com/forums/flat. ...
分类:
编程语言 时间:
2021-03-06 14:14:42
阅读次数:
0
练习71: 题目: 编写input()和output()函数输入,输出5个学生的数据记录。 程序: N = 5 # stu # num : string # name : string # score[4]: list student = [] for i in range(5): student. ...
分类:
编程语言 时间:
2021-03-06 14:13:52
阅读次数:
0
from django.contrib import admin# Register your models here.#注册模型# admin.site.register(模型类)from book.models import BookInfo, PeopleInfoadmin.site.regi ...
分类:
其他好文 时间:
2021-03-05 13:18:58
阅读次数:
0