python-tuf/tuf/repository/__init__.py
Jussi Kukkonen fdf0affcad repository: Address review comments
This is a collection of comment, documentation and logging fixes.

The noteworthy part is making it clear that repository is not stable
API yet: I think this is a good idea.

Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
2022-12-03 11:34:21 +02:00

13 lines
500 B
Python

# Copyright 2021-2022 python-tuf contributors
# SPDX-License-Identifier: MIT OR Apache-2.0
"""Repository API: A helper library for repository implementations
This module is intended to make any "metadata editing" applications easier to
implement: this includes repository applications, CI integration components as
well as developer and signing tools.
The repository module is not considered part of the stable python-tuf API yet.
"""
from tuf.repository._repository import AbortEdit, Repository