objbrowser icon indicating copy to clipboard operation
objbrowser copied to clipboard

GUI for Python object introspection

Results 4 objbrowser issues
Sort by recently updated
recently updated
newest added

Thank you for providing the object browser. It'd nice to have a search field where one can look for specific methods and fields.

Hey there! Thank you for this, it's extremely useful! Still I'm trying to figure out how I can run the browser without blocking the REPL, so that I can check...

I install PyQt6 and use this code: ```python from objbrowser import browse a = 16; b = 'hello' browse(locals()) ``` It gives this error: ``` Traceback (most recent call last):...

Hello, I've tried objbrowser with Python 3.11 and PySide 6.4, but throws following exception: ``` File "C:\path\objbrowser\objectbrowser.py", line 275, in _setup_views self.button_group.buttonClicked[int].connect(self._change_details_field) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^ IndexError: Signature "buttonClicked(int)" not found for signal:...