Skip to main content

A Selective-Pretty dir printing utility.

Project description

pdir: Selective & Pretty dir() printing utlity

dir() is a very useful utility function in python which returns a list of names comprising the attributes of the given object, and of attributes reachable from it. However, a lot many times all those names can be bugging. Say you are really interested in knowing only the useful methods a Python “list” offers. And you do not like the unreadable, unfiltered mess resulting from using “dir(list)”.

Then pdir should be very useful for you. I wrote this bit because something like this is very helpful to me, who forgets some of the important functions a namespace offers; and likes reading clean pretty stuff.

Quickstart

You can use import the pdir function from pdir after installing this package, and consider it as your new dir() friend.

An example:

>>> from pdir import pdir
>>> from collections import list
>>> pdir(list)
['append',
 'count',
 'extend',
 'index',
 'insert',
 'pop',
 'remove',
 'reverse',
 'sort']

Now lets compare this with what dir() prints:

>>> dir(list)
['__add__', '__class__', .........................................................
..................................................................................
'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

Some of the elements are substituted with dots (…) here.

Wasn’t the former clean and better?

Notes

  • pdir is essentially a wrapper around the existing dir function.

  • I will be trying to add interesting regular expressions support to further filter out pdir results.

  • Anyone who is interested in the code can see it ‘here’_ Its at its very rudimentary stage of development and may be unstable.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pdir-0.1.tar.gz (2.0 kB view details)

Uploaded Source

File details

Details for the file pdir-0.1.tar.gz.

File metadata

  • Download URL: pdir-0.1.tar.gz
  • Upload date:
  • Size: 2.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pdir-0.1.tar.gz
Algorithm Hash digest
SHA256 05d2c68f32a5f6f246f61477f2c0497e88fb7b9a7d66a37ec2f5bd4e81e27868
MD5 940b8d6de96267578e469213b85d4d93
BLAKE2b-256 f93e17a108d29822a58469306ec3f4babb8472b8358a210e9eb02ea2695044ad

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page