Release v1.0.0 (What’s new?).

Documentation Status https://github.com/MacHu-GWU/picage-project/actions/workflows/main.yml/badge.svg https://codecov.io/gh/MacHu-GWU/picage-project/branch/main/graph/badge.svg https://img.shields.io/pypi/v/picage.svg https://img.shields.io/pypi/l/picage.svg https://img.shields.io/pypi/pyversions/picage.svg https://img.shields.io/badge/✍️_Release_History!--None.svg?style=social&logo=github https://img.shields.io/badge/⭐_Star_me_on_GitHub!--None.svg?style=social&logo=github
https://img.shields.io/badge/Link-API-blue.svg https://img.shields.io/badge/Link-Install-blue.svg https://img.shields.io/badge/Link-GitHub-blue.svg https://img.shields.io/badge/Link-Submit_Issue-blue.svg https://img.shields.io/badge/Link-Request_Feature-blue.svg https://img.shields.io/badge/Link-Download-blue.svg

Welcome to picage Documentation

https://picage.readthedocs.io/en/latest/_static/picage-logo.png

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

Table of Content

About the Author

(\ (\
( -.-)o
o_(")(")

Sanhe Hu is a seasoned software engineer with a deep passion for Python development since 2010. As an author and maintainer of 150+ open-source Python projects, with over 15 million monthly downloads, I bring a wealth of experience to the table. As a Senior Solution Architect and Subject Matter Expert in AI, Data, Amazon Web Services, Cloud Engineering, DevOps, I thrive on helping clients with platform design, enterprise architecture, and strategic roadmaps.

Talk is cheap, show me the code:

API Document