python-tuf/tuf/ngclient
Nurgaleev_Mansur_908 53ac05d5d3 change utcnow() to now(timezone.utc)
Signed-off-by: Nurgaleev_Mansur_908 <mansur0158@gmail.com>
2024-02-27 21:57:46 +03:00
..
_internal change utcnow() to now(timezone.utc) 2024-02-27 21:57:46 +03:00
__init__.py add pylint ruleset to ruff 2024-02-20 16:04:06 -05:00
config.py ngclient: change envelope type config to flag 2024-02-21 16:59:55 +01:00
fetcher.py Merge branch 'theupdateframework:develop' into metaclass-fix 2022-12-27 16:28:43 +05:30
README.md Improve README 2021-07-05 10:45:19 +03:00
updater.py ngclient: change envelope type config to flag 2024-02-21 16:59:55 +01:00

Next-gen TUF client for Python

This package provides modules for TUF client implementers.

tuf.ngclient.Updater is a class that implements the client workflow described in the TUF specification (see https://theupdateframework.github.io/specification/latest/#detailed-client-workflow)

tuf.ngclient.FetcherInterface is an abstract class that client implementers can implement a concrete class of in order to reuse their own networking/download libraries -- a Requests-based implementation is used by default.

This package:

  • Aims to be a clean, easy-to-validate reference client implementation written in modern Python
  • At the same time aims to be the library of choice for anyone implementing a TUF client in Python: light-weight, easy to integrate and with minimal required dependencies
  • Is still under development but is planned to become the default client in this implementation (i.e., the older tuf.client will be deprecated in the future)