Modern, Pythonic and type-safe Trac RPC API client
Project description
Trac RPC API client
Modern, Pythonic and type-safe Trac RPC API client.
[!NOTE] This package was developed primarily to satisfy my personal migration needs and as such covers only the read interface of the API!
Please feel free to contact me for complex migration projects from Trac and/or custom development needs. High quality contributions that follow the library structure and donations are also much appreciated.
Installation
$ pip install trac-rpc
Dependencies
Usage
>>> from trac_rpc.client import ApiClient, HttpClient
>>> api_client = ApiClient(
rpc_url="http://127.0.0.1:8000/login/rpc",
http_client=HttpClient(auth=("admin", "admin")),
)
>>> api_client.get_api_version()
TracApiVersion(epoch=1, major=2, minor=0)
>>> result = api_client.get_ticket_last_field_change(1, "status", "closed")
>>> result.timestamp
datetime.datetime(2025, 2, 27, 13, 37, 11, 171873, tzinfo=TzInfo(UTC))
[!IMPORTANT] Trac APIs (e.g.
query_tickets) do not return IDs and/or objects sorted in alphanumeric order!They can either be returned in a custom order (such as priority levels) or grouped by certain fields (such as ticket IDs). If you want to iterate on the objects in a particular order, always remember to sort them appropriately after you call the API.
Customizing models
Changing default string type
Some models like TracMilestone can be parameterized with a string type such as TracStrippedStr instead of str to strip leading and trailing whitespace:
from trac_rpc.client import ApiClient
from trac_rpc.models import TracMilestone
from trac_rpc.validators import TracStrippedStr
api_client = ApiClient(rpc_url="http://127.0.0.1:8000/rpc")
milestone = api_client.get_milestone(" milestone2 ", TracMilestone[TracStrippedStr])
This is especially useful for migrations to detect unnoticed whitespace problems. However, this can potentially cause calls to the Trac RPC API with string object names to fail, so it is not enabled by default.
Adjusting TracTicket model
Each Trac installation is configured in its own way. The default TracTicket model can be easily customized by subclassing:
from trac_rpc.models import TracTicket as TracTicketBase
from trac_rpc.validators import TracSpaceOrCommaSeparated
class TracTicket(TracTicketBase):
keywords: TracSpaceOrCommaSeparated[str]
cc: TracSpaceOrCommaSeparated[str]
Usually Trac fields are separated by spaces (TracSpaceSeparated), but alternative types are provided for convenience (TracCommaSeparated, TracSpaceOrCommaSeparated).
Complex validation to ensure data consistency is possible with the validate_in_set validator:
from functools import partial
from typing import Annotated
from pydantic import AfterValidator
from trac_rpc.models import TracTicket as TracTicketBase
from trac_rpc.validators import validate_in_set, TracOptionalField
VERSIONS = {"1.0", "2.0"}
class TracTicket(TracTicketBase):
validate_version = partial(validate_in_set, allowed=VERSIONS, optional=True)
...
version: Annotated[TracOptionalField[str], AfterValidator(validate_version)]
Development
Setting up test Trac server
See GitHub Actions workflow for integration tests.
Releases
To release a new version and publish it to PyPI:
- Bump version with
hatchand commithatch version minororhatch version patch
- Create GitHub release (and tag)
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 trac_rpc-0.1.3.tar.gz.
File metadata
- Download URL: trac_rpc-0.1.3.tar.gz
- Upload date:
- Size: 44.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7b685fc8355e9ad7de57d90cf0a9010eab457a04cf15b6d4aed7255f38f814b
|
|
| MD5 |
f6c79bb42186ad3a020b8950356fe76c
|
|
| BLAKE2b-256 |
a6f1bc608f27aa85a64e858b608b7bdcd6e688d912672f42eec17a27c129aff0
|
File details
Details for the file trac_rpc-0.1.3-py3-none-any.whl.
File metadata
- Download URL: trac_rpc-0.1.3-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb29cb25e13f15e0db21b24a0586969d0e077e94f2497b2fae42ce3d17a84e6c
|
|
| MD5 |
5ff09a122d03de5b2c9b7ea1c586f16b
|
|
| BLAKE2b-256 |
79fda8c48f39a0560993d6938dbe74a6a2ccf6ef219995e0552ce2a3fb2f0a00
|