1 Star 0 Fork 0

埋藏酱油瓶/cookie-monster

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
base64-encode.py 311 Bytes
一键复制 编辑 原始数据 按行查看 历史
import sys
import base64
def main():
args = sys.argv[1:]
if len(args) != 1:
print("Usage: python base64-encode.py <key>")
sys.exit(1)
key = args[0]
base64_key = base64.b64encode(key.encode())
print(base64_key.decode())
if __name__ == "__main__":
main()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/secrole/cookie-monster.git
git@gitee.com:secrole/cookie-monster.git
secrole
cookie-monster
cookie-monster
main

搜索帮助