上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 43 下一页
摘要: from typing import Optional from fastapi import FastAPI from pydantic import BaseModel # 用来声明请求体的库:1.提供运行时类型信息;2.返回友好错误提示 app = FastAPI() class Item(B 阅读全文
posted @ 2022-01-26 11:19 Tarzen 阅读(128) 评论(0) 推荐(0) 编辑
摘要: This module provides runtime support for type hints。 下面的函数接收与返回的都是字符串,注解方式如下: def greeting(name: str) -> str: return name greeting 函数中,参数 name 的类型是 st 阅读全文
posted @ 2022-01-26 10:48 Tarzen 阅读(452) 评论(0) 推荐(0) 编辑
摘要: 创建一个main.py文件 查看代码 from typing import Optional from fastapi import FastAPI app = FastAPI() @app.get("/") def read_root(): return {"Hello": "World"} @a 阅读全文
posted @ 2022-01-26 10:21 Tarzen 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 最近在使用Fastapi编写web接口,涉及mysql数据库了记录一下使用SQLAlcheme: https://www.osgeo.cn/sqlalchemy/orm/tutorial.htmlfrom sqlalchemy import create_enginefrom sqlalchemy. 阅读全文
posted @ 2022-01-20 11:50 Tarzen 阅读(213) 评论(0) 推荐(0) 编辑
摘要: try: a = 10/0 #这里会报错,try会异常退出,然后走到 except捕获异常 print(a) #不会执行的 except BaseException as e: print(e) else: print('只有try正常执行了才会执行else') #try异常后,else不会执行 f 阅读全文
posted @ 2022-01-20 09:35 Tarzen 阅读(46) 评论(0) 推荐(0) 编辑
摘要: node('amd64') { stage('start') { echo "start" start(projects_a) } stage('AT-UT'){ parallel ( 'pxe-and-at':{ timeout(time: 300, unit: 'MINUTES'){ try{ 阅读全文
posted @ 2021-12-20 10:33 Tarzen 阅读(758) 评论(0) 推荐(0) 编辑
摘要: 报错信息 File "D:\Python36\lib\ssl.py", line 465, in options super(SSLContext, SSLContext).options.__set__(self, value) [Previous line repeated 321 more t 阅读全文
posted @ 2021-12-14 14:30 Tarzen 阅读(956) 评论(0) 推荐(1) 编辑
摘要: https://www.edrawmax.cn/templates/file/1019799 阅读全文
posted @ 2021-11-23 15:22 Tarzen 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 目前存在:网络限制不让访问外网或者外网速度慢下载依赖超时等问题,所以我们需要采用相对离线的方式安装我们的依赖。 第一种:公司内网安装python依赖,如果公司没有的话看看国内的源 阿里云 http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https://py 阅读全文
posted @ 2021-11-22 16:25 Tarzen 阅读(680) 评论(3) 推荐(1) 编辑
摘要: 今天读到一篇文章有点启发,文章大意是这样的: 拿微软和谷歌做了对比。微软有的部门(window)开发和测试比是1:1,而谷歌开发和测试比10:1。 1:1测试人员的工作很多(这个和我目前的情况差多,需要做测试计划、方案、功能、自动化、性能测试、安全测试等等) 10:1说明测试的工作简单轻松(测试人员 阅读全文
posted @ 2021-11-17 14:21 Tarzen 阅读(2885) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 43 下一页