上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: swagger好处不多说,直接上配置步骤 1、安装swagger pip install django-rest-swagger 2、将swagger配置到setting.py文件中 3、在主url.py中配置接口文档路径 代码解析: from rest_framework.schemas impo 阅读全文
posted @ 2020-09-02 15:15 **绵绵羊** 阅读(2075) 评论(0) 推荐(0) 编辑
摘要: 在启动服务时报django.core.exceptions.ImproperlyConfigured: Application labels aren't unique, duplicates: rest_framework_swagger错误 错误解释:应用程序标签不是唯一的,重复的rest_fr 阅读全文
posted @ 2020-09-02 14:26 **绵绵羊** 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 代码: class WebCase(models.Model): id = models.AutoField(primary_key=True) casename = models.CharField("用例名称", max_length=200) caseresult = models.Boole 阅读全文
posted @ 2020-09-01 18:07 **绵绵羊** 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 代码: class CaseStepAdmin(admin.ModelAdmin): list_display = ('id', 'casetep', 'casedata', 'webcase', 'stepresult', 'update_time', 'create_time') model = 阅读全文
posted @ 2020-08-31 14:14 **绵绵羊** 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 错误代码: class CaseStep(models.Model): id = models.AutoField(primary_key=True) casetep = models.ForeignKey(WebStepInfo, on_delete=models.CASCADE, verbose 阅读全文
posted @ 2020-08-31 14:03 **绵绵羊** 阅读(327) 评论(0) 推荐(0) 编辑
摘要: 1、进入jmeter 应用所在路径 eg: cd D:\Program Files\apache-jmeter-5.2\bin 2、输入运行命令:jmeter -n -t [jmx脚本路径] -l [测试输出文件路径] eg: jmeter -n -t "D:\P1 API\nuc\nuc环境压测. 阅读全文
posted @ 2020-06-18 09:50 **绵绵羊** 阅读(279) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/python/python-reg-expressions.html 阅读全文
posted @ 2020-06-03 16:42 **绵绵羊** 阅读(98) 评论(0) 推荐(0) 编辑
摘要: from pyDes import * import base64 class Des3(object): def __init__(self, key, iv): # 这里密钥key长度必须为16/24, ,偏移量ivs self.key = key self.mode = CBC self.iv 阅读全文
posted @ 2020-05-30 09:58 **绵绵羊** 阅读(1934) 评论(0) 推荐(0) 编辑
摘要: from Crypto.PublicKey import RSA from Crypto.Cipher import PKCS1_v1_5 as Cipher_pkcs1_v1_5 from Crypto.Signature import PKCS1_v1_5 as Signature_pkcs1_ 阅读全文
posted @ 2020-05-30 09:50 **绵绵羊** 阅读(6470) 评论(0) 推荐(0) 编辑
摘要: AES 只是个基本算法,实现 AES 有几种模式,主要有 ECB、CBC、CFB 和 OFB CTR,直接上代码,此处为AES加密中的CBC模式,EBC模式与CBC模式相比,不需要iv。 import base64from Crypto.Cipher import AES from binascii 阅读全文
posted @ 2020-05-30 09:40 **绵绵羊** 阅读(1286) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页