文件名称:pybase64:Python中的快速Base64编码解码
文件大小:35KB
文件格式:ZIP
更新时间:2024-04-30 01:41:27
python base64 python-library simd Python
快速的Base64实现 该项目是的包装。 它旨在为base64编码/解码提供一种快速的base64实现。 安装 pip install pybase64 用法 pybase64使用与Python base64“现代接口”(在Python 2.4中引入)相同的API,以实现轻松集成。 为了获得最快的解码速度,建议尽可能使用pybase64.b64decode和validate=True 。 import pybase64 print ( pybase64 . b64encode ( b'>>>foo???' , altchars = '_:' )) # b'Pj4_Zm9vPz8:' print ( pybase64 . b64decode ( b'Pj4_Zm9vPz8:' , altchars = '_:' , validate = True )) # b'>>>foo???'
【文件预览】:
pybase64-master
----MANIFEST.in(225B)
----README.rst(6KB)
----.gitmodules(80B)
----requirements-dev.txt(47B)
----requirements-coverage.txt(84B)
----pyproject.toml(82B)
----docs()
--------api.rst(694B)
--------conf.py(6KB)
--------intro.rst(1KB)
--------changelog.rst(98B)
--------license.rst(165B)
--------Makefile(609B)
--------index.rst(211B)
----.github()
--------dependabot.yml(759B)
--------workflows()
----requirements-doc.txt(62B)
----base64()
----LICENSE(1KB)
----pybase64()
--------_pybase64_get_simd_flags.h(334B)
--------distutils()
--------_pybase64_get_simd_flags.c(2KB)
--------_pybase64.c(22KB)
--------tests()
--------__main__.py(8KB)
--------_fallback.py(5KB)
--------__init__.py(4KB)
--------_version.py(22B)
----setup.cfg(177B)
----setup.py(10KB)
----.gitignore(1KB)
----.pre-commit-config.yaml(827B)