A lightweight utility library providing an object-oriented interface for inspecting Python package and module structure.
Project description
Welcome to picage Documentation
picage is a lightweight utility library that provides an object-oriented interface for inspecting Python package and module structure. Given any installed package name, it automatically locates the source code on the current Python import path and lets you explore its structure. You can access:
fully qualified name and short name of any package or module
parent package, sub-packages, and sub-modules
recursively walk through all sub-packages and sub-modules
pretty-print the entire package tree
picage supports all common installation formats including flat dist-info/wheel installs, legacy egg-link editable installs, PEP 660 editable installs (both path-insertion and custom-finder strategies), and legacy egg-directory installs.
Usage
>>> from picage.api import Package
>>> pkg = Package("requests")
>>> pkg
Package(name='requests', path='/.../site-packages/requests')
>>> print(pkg)
Package(
name='requests',
path='/.../site-packages/requests',
sub_packages=[...],
sub_modules=['adapters', 'api', 'auth', ...],
)
# Access sub-packages and sub-modules
>>> for name, sub_pkg in pkg.sub_packages.items():
... print(name, sub_pkg.fullname)
>>> for name, mod in pkg.sub_modules.items():
... print(name, mod.fullname)
# Use dot notation to access nested children
>>> mod = pkg["api"] # direct child module
>>> deep = pkg["commands.install"] # dot notation for deeper access
# Walk through the entire package tree
>>> for node, parent, sub_pkgs, sub_mods in pkg.walk():
... print(node.fullname)
# Include leaf modules in the walk
>>> for node, parent, sub_pkgs, sub_mods in pkg.walk(pkg_only=False):
... print(node.fullname)
# Navigate the parent chain
>>> child = pkg["utils"]
>>> child.parent is pkg
True
>>> pkg.parent is None
True
# Pretty-print the package tree
>>> pkg.pprint()
/.../site-packages
|-- requests (requests)
|-- ...
Install
picage is released on PyPI, so all you need is:
$ pip install picage
To upgrade to latest version:
$ pip install --upgrade picage
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file picage-1.0.0.tar.gz.
File metadata
- Download URL: picage-1.0.0.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d4a0eb369e036872e48f09f119eedecb50299e9b18ff15c44383967cc9a5e0b1
|
|
| MD5 |
92b5c086ccb04e61ed75fcc469766ce8
|
|
| BLAKE2b-256 |
fecf321fa1a4824384f76975a5913f43b0a63601204d14b48556ff432dcc02f5
|
File details
Details for the file picage-1.0.0-py3-none-any.whl.
File metadata
- Download URL: picage-1.0.0-py3-none-any.whl
- Upload date:
- Size: 14.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b8d1f5182ec33e2b5faf644b882acf3c98c3baf7e38362aeb380d191f7203a0
|
|
| MD5 |
26713d69ab4d805cf8b58a1168f78a66
|
|
| BLAKE2b-256 |
e0613af343f15f96dd71f9bdadff94868be3ebf622453607efd01319ec7375a4
|