Metadata-Version: 1.1
Name: callwith
Version: 0.2.0
Summary: Call function with parameters
Home-page: https://github.com/huyx/callwith
Author: huyx
Author-email: ycyuxin@gmail.com
License: UNKNOWN
Description: Call function with parameters
        -----------------------------
        
        You can do:
        
            format(3.1415926, '.2f')
        
        But you can not do:
        
            parameters = (3.1415926, '.2f')
            format(parameters)
        
        With callwith, you can do similar thing:
        
            from callwith import CallWith as _
        
            parameters = _(args, **kwargs)
            parameters(format)
        
        Rename `CallWith` to `Parameters`, `CallWith` is now a subclass of `Parameters`.
        
        
        Change Log
        ----------
        
        0.2.0
        
         - Rename `CallWith` to `Parameters`, `CallWith` is now a subclass of `Parameters`.
        
Keywords: functools,function,call
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
