distlib: Distribution Utilities

0.4.0 · active · verified Sat Mar 28

distlib is a Python library that provides low-level functions for packaging and distributing Python software, serving as a foundation for third-party packaging tools. The current version is 0.4.0, released on July 17, 2025. The project is actively maintained with regular updates.

Warnings

Install

Imports

Quickstart

A basic example demonstrating the initialization and usage of distlib's Database and Index classes.

from distlib.database import Database
from distlib.index import Index

# Initialize the database
db = Database()

# Initialize the index
index = Index()

# Example usage of the database and index
# (Replace with actual functionality as needed)
print(db)
print(index)

view raw JSON →