Metadata-Version: 1.1
Name: objbrowser
Version: 1.0.0
Summary: Python object browser implemented in Qt.
Home-page: https://github.com/titusjan/objbrowser
Author: Pepijn Kenter
Author-email: titusjan@gmail.com
License: UNKNOWN
Description: ==========
        objbrowser
        ==========
        
        Extensible Python object inspection tool implemented in Qt.
        
        Displays objects as trees and allows you to inspect their attributes
        recursively (e.g. browse through a list of dictionaries). You can add 
        your own inspection methods as new columns to the tree view, or as radio buttons
        to the details pane. Altering existing inspection methods is possible as well.
        
        Requires: PySide (https://github.com/PySide/pyside-setup)
        
        Installation: pip install objbrowser
        
        Example use:
        
        ::
        
            from objbrowser import browse
            a = 16; b = 'hello'
            browse(locals())
        
        For more examples see: https://github.com/titusjan/objbrowser
        
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: X11 Applications :: Qt
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Adaptive Technologies
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
