Metadata-Version: 2.1
Name: pyzafa
Version: 1.2.0
Summary: Python自用小功能
Home-page: https://github.com/taishengxin/pyzafa
Author: taishengxin
Author-email: taishengxin@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.6.0
Description-Content-Type: text/x-rst


pyzafa
===============================================================================

Python自用小功能。安装:

.. code-block:: text

    pip install pyzafa

数据编码
------------------------------------------------------------------------------

1. unicode字符与base64字符相互转换
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. code-block:: python

    from pyzafa.data_encoding import base64encode, base64decode

    base64encode('你好，世界')
    base64decode('5L2g5aW977yM5LiW55WM')

