pip离线安装
pip 下载模块相关文件
pip3 download bs4 Path asyncio argparse
离线安装
pip3 install --no-index --find-links='path/' bs4 Path asyncio argparse
pip3 download bs4 Path asyncio argparse
pip3 install --no-index --find-links='path/' bs4 Path asyncio argparse
acme_v2.py
/www/server/panel/class/acme_v2.py
文件解读略if __name__ == '__main__'
中语句python /www/server/panel/class/acme_v2.py --domain 域名1,域名2 --type http --path 网址根路径
安装certbot & certbot-dns-cloudflare过程中遇到No module named setuptools_rust
pip3 install -U pip
排查对比,rewrite old_url new_url last;
在正则location 下不生效
location ^~ /ext_url {
rewrite . /new_url.php last; # 不生效,将location 改为普通匹配即可
}
{}
方法字符串中包含{}
的情况,单个{}
会被解析为填入内容,使用{{}}
输出{}
print('我想生成一段含有{}的字符串, 填充内容为 {} '.format('string'))
print('我想生成一段含有{{}}的字符串, 填充内容为 {} '.format('string'))