Metadata-Version: 2.1
Name: fastutils
Version: 0.4.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
        
        ```shell
        pip install fastutils
        ```
        
        ## *NOTE:* Extra requirements for python 2.7
        
        - funcsigs
        
        ## Installed Utils
        
        - aesutils
        - dictutils
        - functuils
        - hashutils
        - jsonutils
        - listutils
        - sixutils
        - strutils
        
        ## Usage Example
        
        ```python
        from fastutils import strutils
        assert strutils.split("a,b.c", [",", "."]) == ["a", "b", "c"]
        ```
        
        
        
        ## Releases
        
        ### v0.4.0 2019.12.07
        
        - Add jsonutils, provides simple json encoder register system.
        
        ### v0.3.2 2019.10.29
        
        - Fix problems for python 2.7.
        - Fix name error of funcutils.
        
        ### v0.3.1 2019.10.28
        
        - Fix problem casued by str.isascii() which is new from python 3.7.
        
        ### v0.3.0 2019.09.24
        
        - Add listutils.unique to remove duplicated elements from the list.
        - Add listutils.replace to replace element value in thelist with new_value in collection of map.
        
        ### v0.2.0 2019.09.10
        
        - Add functuils.get_inject_params to smartly choose parameters from candidates by determine with the function's signature.
        - Add functuils.call_with_inject to smartly call the function by smartly choose parameters.
        
        ### v0.1.1 2019.08.27
        
        - Add strutils.wholestrip function, use to remove all white spaces in text.
        - Fix strutils.is_urlsafeb64_decodable, strutils.is_base64_decodable and strutils.is_unhexlifiable functions, that have problem to test text contains whitespaces.
        
        ### 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,funcutils
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
