当前脚本/模块文件的路径,使用内置变量 __file__。注意“file”两端是各两个下划线。 当前工作目录,使用 os.getcwd() 方法。 Python 3For the directory of the script being run: import pathlib
差集:对于给定的两个集合,返回一个包含所有存在于第一个集合且不存在于第二个集合的元素的新集合。 例如有名单 A,黑名单 B,要从名单A中剔除掉黑名
Python 创建文件夹,支持多级目录。 def make_dirs(dir_path): # 去除首尾空白符和右侧的路径分隔符 dir_path = dir_path.strip().rstrip(os.path.sep) if dir_path: if not os.path.exists(dir_path): # 如果目录已存在, 则忽略,否则才创建 os.makedirs(dir_path)
使用内置的 input 函数 举例:打印用户的输入 name = input("Please input your name:") print(name) 举例:按回车键之后退出 input("PRESS ENTER TO QUIT") sys.exit(0)
dictionary[new_key] = dictionary.pop(old_key) .pop() 将 Key-Value 条目取出(从字典中删除并返回该条目) 参考文章: Change the name of a key in dictionary
准备软件包文件一种是和系统无相关性的程序包,例如一些纯 Python 代码写的程序包,即在本地开发环境和 Lambda 运行时环境中使用的程序包文件一样。 参见 AWS Lambda 准备无
无平台相关性的软件包,即本地开发环境和 Lambda 运行时环境中使用的程序包文件一样。 直接将本地的依赖项软件包提取出来,打包,然后部署到 AWS Lambda 环境中即可。
native code 使用 docker 在 Amazon lambda runtime 环境mkdir lambda_headless_chrome_python cd lambda_headless_chrome_python 创建下面的 Dockerfile。 Dockerfile FROM lambci/lambda:build-python3.6 ENV AWS_DEFAULT_REGION ap-northeast-1 ENV APP_DIR /var/task ADD . . CMD pip install -r requirements.txt -t $APP_DIR && \ zip -9 deploy_package.zip lambda_function.py && \ zip -r9 deploy_package.zip * 创建 docker 镜
Signature algorithm. Could be one of these values : HS256: HMAC using SHA-256 hash algorithm HS384: HMAC using SHA-384 hash algorithm HS512: HMAC using SHA-512 hash algorithm RS256: RSASSA using SHA-256 hash algorithm RS384: RSASSA using SHA-384 hash algorithm RS512: RSASSA using SHA-512 hash algorithm ES256: ECDSA using P-256 curve and SHA-256 hash algorithm ES384: ECDSA using P-384 curve and SHA-384 hash algorithm ES512: ECDSA using P-521 curve and SHA-512
SAM (Serverless Application Model) 是 AWS 提供的一个用于构建无服务器应用程序的开源框架。 这里安装其命令行工具,用来方便快速部署 AWS Serverless 项目。 现在还提供了 GUI 和 CLI 版本,点击查看安