From 2c30f0d4557787befb9b6def2922dab7ec47fe46 Mon Sep 17 00:00:00 2001 From: lemonlittle Date: Sun, 29 Oct 2023 02:49:47 +0800 Subject: [PATCH] Auto Commit --- readapi.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 readapi.py diff --git a/readapi.py b/readapi.py new file mode 100644 index 0000000..37ab37a --- /dev/null +++ b/readapi.py @@ -0,0 +1,9 @@ +import os + +# 获取指定环境变量的值 +inscode_api_key = os.getenv('INSCODE_API_KEY') +qiniu_access_key = os.getenv('QINIU_ACCESS_KEY') + +# 打印环境变量值 +print(inscode_api_key) +print(qiniu_access_key) -- GitLab