📦 Cn Base64 Tools — Cn Base64 工具
v1.0.0Base64编码解码工具。支持文本编码/解码、URL安全Base64、文件Base64转换。纯Python标准库,无需API Key。
0· 0·0 当前·0 累计
运行时依赖
无特殊依赖
安装命令
点击复制官方npx clawhub@latest install cn-base64-tools
镜像加速npx clawhub@latest install cn-base64-tools --registry https://cn.longxiaskill.com镜像同步中
技能文档
cn-base64-tools Base64编码解码工具。支持文本、URL安全Base64编解码。 功能 文本编码:将普通文本转为Base64字符串 文本解码:将Base64字符串还原为原始文本 URL安全模式:使用URL安全字符替换 +/ 为 -_ 自动检测:自动判断输入是否为合法Base64
安装要求 Python 3.6+ 无外部依赖
使用方法 # 编码 python3 scripts/base64_tools.py "encode 你好世界" # 解码 python3 scripts/base64_tools.py "decode 5L2g5aW95LiW55WM" # URL安全编码 python3 scripts/base64_tools.py "encode-url 数据内容"
示例 输入:encode Hello World 输出:SGVsbG8gV29ybGQ= 输入:decode SGVsbG8gV29ybGQ= 输出:Hello World
分类 开发工具
关键词 base64, 编码, 解码, encode, decode, url-safe