Metadata-Version: 1.1
Name: iload
Version: 0.1.8
Summary: Load or reload python object
Home-page: https://github.com/huyx/iload
Author: huyx
Author-email: ycyuxin@gmail.com
License: UNKNOWN
Description: Load or reload python object
        -----------------------------
        
        import module::
        
            import iload
        
        load moudule::
        
            mod = iload.iload('mymodule')
        
        load function::
        
            func = iload.iload('mymodule.func')
        
        load class::
        
            MyClass = iload.iload('mymodule.MyClass')
        
        reload module::
        
            new_mod = iload.ireload(mod)
        
        reload function::
        
            new_func = iload.ireload(func)
        
        reload class::
        
            NewMyClass = iload.ireload(MyClass)

        

        

        Changes
        =======
        
        0.1.8(2014-09-16)
        -----------------
        
        - Add CHANGES.rst and README.rst to MANIFEST.in
        
        0.1.3
        -----
        
        - Add CHANGES.txt
        - Refactor setup.py
        - Use reStructuredText in README
Keywords: load,reload
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
