Metadata-Version: 2.1
Name: fastutils
Version: 0.1.0
Summary: Collection of simple utils.
Home-page: UNKNOWN
Author: zencore
Author-email: dobetter@zencore.cn
License: MIT
Description: # fastutils
        
        Collection of simple utils.
        
        ## Install
        
        ```
            pip install fastutils
        ```
        
        ## Installed Utils
        
        - aesutils
        - dictutils
        - hashutils
        - listutils
        - strutils
        
        ## Usage Example
        
        ```
        from fastutils import strutils
        assert strutils.split("a,b.c", [",", "."]) == ["a", "b", "c"]
        ```
        
        
        
        ## Release Notice
        
        
        ### v0.1.0 2019.08.23
        
        - Add simple utils about operations of aes, dict, hash, list and str.
        
Keywords: fastutils,listutils,dictutils,strutils,hashutils,aesutils
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Description-Content-Type: text/markdown
