Metadata-Version: 1.1
Name: formatclass
Version: 0.0.2
Summary: formatclass(cls,...) - format class representation
Home-page: https://github.com/russianidiot/formatclass.py/
Author: russianidiot
Author-email: UNKNOWN
License: UNKNOWN
Description: 	
        Install
        '''''''
        
        github.com_: :code:`pip install git+git://github.com/russianidiot/formatclass.py.git`
        
        pypi.python.org_: :code:`pip install formatclass`
        
        download_: :code:`python setup.py install` or :code:`setup/.setup.py develop.command`
        
        .. _github.com: http://github.com/russianidiot/formatclass.py
        .. _pypi.python.org: https://pypi.python.org/pypi/formatclass
        .. _download: https://github.com/russianidiot/formatclass.py/archive/master.zip
        
        	
        
        	
        
        	
        
        Usage 
        '''''
        .. code-block::
        
        	from formatclass import *
        
        	class Cls(object): pass
        	class Cls2(Cls): 
        	    def __init__(self,arg,arg2="default"): pass
        
        	formatclass(CLS2)
        	>>> Cls2(__main__.Cls)(arg, arg2='default')
        
        	formatclass(CLS2,fullname=False)
        	>>> Cls2(Cls)(arg, arg2='default')
        
        	formatclass(CLS2,args=False)
        	>>> Cls2(Cls)
        	
        	formatclass(CLS2,space=False)
        	>>> Cls2(Cls)(arg,arg2='default')
        
        ------------
        
        **Tested**: python 2.6, 2.7, 3+
        
        **Bug Tracker**: `github.com/russianidiot/formatclass.py/issues`__
        
        __ https://github.com/russianidiot/formatclass.py/issues
Keywords: format class inspect
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Natural Language :: Russian
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
