Runtime access to Python class attribute docstrings (PEP 224)
Project description
runtime-docstrings
Runtime access to Python class attribute docstrings (PEP 224)
Installation
pip install runtime-docstrings
Usage
Class
from runtime_docstrings import docstrings, get_docstrings
@docstrings
class Person:
"""A person with various attributes."""
name: str
"""The person's full name."""
email: str
"""Contact email address."""
age: int = 0
"""The person's age in years."""
# Access docstrings map directly on class (IDE style)
docs = get_docstrings(Person)
print(docs["name"]) # "The person's full name."
print(docs["age"]) # "The person's age in years."
print(docs["email"]) # "Contact email address."
# Access via PEP 224 style attributes (uses Python MRO lookup)
print(Person.__doc_name__) # "The person's full name."
print(Person.__doc_age__) # "The person's age in years."
print(Person.__doc_email__) # "Contact email address."
Enum
from enum import Enum
from runtime_docstrings import docstrings
@docstrings
class Status(Enum):
"""Status enumeration for task tracking."""
PENDING = "pending"
"""Task is waiting to be processed."""
RUNNING = "running"
"""Task is currently being executed."""
COMPLETED = "completed"
"""Task has finished successfully."""
FAILED = "failed"
"""Task encountered an error."""
# Supports all the standard class access patterns
# Access via enum member __doc__ attribute
print(Status.PENDING.__doc__) # "Task is waiting to be processed."
print(Status.COMPLETED.__doc__) # "Task has finished successfully."
# Iterate through all members with their documentation
for member in Status:
if member.__doc__:
print(f"{member.name}: {member.__doc__}")
Dataclass
from dataclasses import dataclass, fields
from runtime_docstrings import docstrings, get_docstrings
@docstrings
@dataclass
class Product:
"""A product in an e-commerce system."""
name: str
"""Product name."""
price: float
"""Price in USD."""
category: str = ""
"""Product category."""
description: str = ""
"""Detailed product description."""
# Supports all the standard class access patterns
# Access via dataclass field metadata
for field in fields(Product):
if field.metadata.get("__doc__"):
print(f"{field.name}: {field.metadata['__doc__']}")
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
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 runtime_docstrings-0.1.3.tar.gz.
File metadata
- Download URL: runtime_docstrings-0.1.3.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57732298bd16fb0d54ddbecbebf9edf1f9862835b138b149e7aac6b0915eadd7
|
|
| MD5 |
4a5929b5163a1542d08a136a97f08000
|
|
| BLAKE2b-256 |
40816ed26be917443be079a675e59bcbba879feddb911a6b0a28a53737c34dd5
|
File details
Details for the file runtime_docstrings-0.1.3-py3-none-any.whl.
File metadata
- Download URL: runtime_docstrings-0.1.3-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b991650e696404d63392ab39956660ec9faddff16d796321f0b6b6abe3e3bfe0
|
|
| MD5 |
fe92b3a680b0d3b1b5dee013707b3967
|
|
| BLAKE2b-256 |
30fbd41eb1913c92869e859fa8c49fc785342f43fe8f0d92a3ceff739feb4526
|