objbrowser
objbrowser copied to clipboard
GUI for Python object introspection
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:...
I'm using `qtpy` version 2.4.1 with objbrowser `PROGRAM_VERSION` = 1.3.1 according to `version.py`. The check on line 14->23 in `objbrowser/version.py` is failing when it tries to: `import qtpy, qtpy._version` It...