分类: language
fastapi 关闭接口文档
fastapi 关闭接口文档 import os from fastapi import FastAPI env = os.getenv('env') if env != 'develop':
...Read more...
shell 输入密码脚本不显示明文
#!/usr/bin/env bash echo -e "Enter Password:\c" # 在读取密码前禁止回显 stty -echo read password #
...Read more...
python pandas sql 导出 Excel 并自动调整宽度
python pandas sql 导出 Excel 并自动调整宽度 from sqlalchemy import create_engine import pandas as pd from
...Read more...
shell 字符串做变量
无限温度的颜色
python 模块 typer
python typer 模块 安装 pip install typer typer-cli 函数参数等于命令行参数 import typer def test(name, age): prin
...Read more...