摘要:
1.字符串钱加 u 例如:u"我是含有中文字符组成的字符串。" 作用:后面字符串以 Unicode 格式进行编码,一般用于在中文字符串前面,防止因为源码存储格式问题,导致再次使用时出现乱码。 2.字符串钱加 r 例如:r"\n\n\n\n” # 表示一个普通生字符串 \n\n\n\n,而不表示换行了 阅读全文
摘要:
certbot 链接地址 免费证书厂商:https://letsencrypt.org/zh-cn/ AWS ec2 配置免费证书 # aws 参考链接:https://docs.amazonaws.cn/AWSEC2/latest/UserGuide/SSL-on-amazon-linux-2.h 阅读全文
摘要:
Lambda 1 import boto3 2 import datetime 3 4 client = boto3.client('ec2', ) 5 alias = boto3.client('iam').list_account_aliases()['AccountAliases'][0] 6 阅读全文