
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Have you ever dreamed of a better output of dir()
? I do. So I created this.
Attributes are grouped by types/functionalities, with beautiful colors.
Support color customization, here's how.
Support all platforms including Windows(Thanks to colorama).
Support ipython, ptpython, bpython and Jupyter Notebook! See wiki 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.
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.
dnf install python3-pdir2
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!
Set up development environment
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).
Run tests
Run pdm run tox
The guide may be incomplete. Please file bugs if you encounter any issues.
FAQs
Pretty dir printing with joy
We found that pdir2 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.