https://github.com/laike9m/pdir2
Pretty dir() printing with joy:beer:
https://github.com/laike9m/pdir2
Last synced: about 1 month ago
JSON representation
Pretty dir() printing with joy:beer:
- Host: GitHub
- URL: https://github.com/laike9m/pdir2
- Owner: laike9m
- License: mit
- Created: 2017-02-27T13:58:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-10T17:00:41.000Z (8 months ago)
- Last Synced: 2025-05-05T15:21:31.071Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 2 MB
- Stars: 1,329
- Watchers: 21
- Forks: 47
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- License: LICENSE
Awesome Lists containing this project
README
# pdir2: Pretty dir() printing with joy

[](https://pypi.python.org/pypi/pdir2/)
Have you ever dreamed of a better output of `dir()`? I do. So I created this.

## Features
- Attributes are grouped by types/functionalities, with beautiful colors.
- Support color customization, [here's how](https://github.com/laike9m/pdir2/wiki/User-Configuration).
- Support all platforms including Windows(Thanks to [colorama](https://github.com/tartley/colorama)).
- Support [ipython](https://github.com/ipython/ipython), [ptpython](https://github.com/jonathanslenders/ptpython), [bpython](https://www.bpython-interpreter.org/) and [Jupyter Notebook](http://jupyter.org/)! See [wiki](https://github.com/laike9m/pdir2/wiki/REPL-Support) for details.
- The return value of `pdir()` can still be used as a list of names.
- ✨ Attribute searching
You can search for certain names with `.s()` or `.search()`:

Search is case-insensitive by default.
`search(name, case_sensitive=True)` does case-sensitive searching.- :star2: Attribute filtering
`properties`: Find properties/variables defined in the inspected object.
`methods`: Find methods/functions defined in the inspected object.
`public`: Find public attributes.
`own`: Find attributes that are not inherited from parent classes.
These filters **can be chained!** Order does **NOT** matter.
For example, use `pdir(obj).public.own.methods` to find all public own methods.
You can also call `search` on the returned results.
See a [complete example](https://github.com/laike9m/pdir2/wiki/Attribute-Filtering).
## Install
### Generic
pip install pdir2
About the name. I wanted to call it "pdir", but there's already one with this
name on pypi. Mine is better, of course.### Fedora
dnf install python3-pdir2
## Automatic Import
As a better alternative of `dir()`, it's more convenient to automatically import
pdir2 when launching REPL. Luckily, Python provides a way to do this. In you `.bashrc`(or `.zshrc`), add this line:export PYTHONSTARTUP=$HOME/.pythonstartup
Then, create `.pythonstartup` in your home folder. Add one line:
import pdir
Next time you launch REPL, `pdir()` is already there, Hooray!
## Development
1. Set up development environment
- **PDM**: pdir2 uses [PDM](https://pdm.fming.dev/latest/) to manage dependencies, so you want to make sure it's installed.
- **pyenv**: Since you need to test pdir2 on multiple Python versions, [pyenv](https://github.com/pyenv/pyenv) is highly recommended. Make sure you have Python 3.8, 3.9, 3.10 and 3.11 installed.2. Install dev dependencies
Simply run `pdm install`.
If you want to work on a specific Python version, run `pdm use [PYTHON_VERSION]` first to switch PDM to that version (e.g. `pdm use 3.9` if you want to debug a Python 3.9 specific issue).
3. Run tests
Run `pdm run tox`
The guide may be incomplete. Please file bugs if you encounter any issues.