Metadata-Version: 2.1
Name: dreg-client
Version: 1.0.0
Summary: API client for Docker Registries
Home-page: https://github.com/djmattyg007/dreg-client
Author: Matthew Gamble
Author-email: git@matthewgamble.net
License: Apache License 2.0
Project-URL: Source, https://github.com/djmattyg007/dreg-client
Project-URL: Issues, https://github.com/djmattyg007/dreg-client/issues
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Software Distribution
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.9
Provides-Extra: lint
Provides-Extra: typecheck
Provides-Extra: test
Provides-Extra: build
Provides-Extra: dev
License-File: LICENSE.txt

======================
Docker Registry Client
======================

|ci| |codecov| |pypi| |license|

A Python REST client for Docker Registries. Pronounced ``dee-redge client``.

It's useful for automating image tagging and untagging

.. |ci| image:: https://github.com/djmattyg007/dreg-client/workflows/CI/badge.svg?branch=main
   :target: https://github.com/djmattyg007/dreg-client/actions?query=branch%3Amain+workflow%3ACI
   :alt: Build status
.. |codecov| image:: https://codecov.io/gh/djmattyg007/dreg-client/branch/main/graph/badge.svg
   :target: https://codecov.io/gh/djmattyg007/dreg-client
   :alt: Code coverage
.. |pypi| image:: https://img.shields.io/pypi/v/dreg-client.svg
   :target: https://pypi.org/project/dreg-client
   :alt: Latest version released on PyPI
.. |license| image:: https://img.shields.io/pypi/l/dreg-client.svg
   :target: https://pypi.org/project/dreg-client
   :alt: Apache License 2.0

Usage
=====

Most people will primarily use the ``Registry`` class:

.. code-block:: python

    from dreg_client import Registry

    registry = Registry.build_with_manual_client("https://registry.example.com/v2/")

    namespaces = registry.namespaces()  # a sequence of strings
    repositories = registry.repositories()  # a mapping of repository names to Repository objects
    ns_repositories = registry.repositories("testns")  # a mapping of repository names to Repository objects,
                                                       # but only for those repositories in the "testns" namespace
    test_repo = registry.repository("testrepo", "testns")  # a Repository object
    test_repo = registry.repository("testns/testrepo")  # an identical repository object

The ``Repository`` class has several methods for interacting with individual repositories:

.. code-block:: python

    from dreg_client import Repository, Manifest

    assert isinstance(test_repo, Repository)
    assert test_repo.name == "testns/testrepo"

    tags = test_repo.tags()  # a sequence of strings

    manifest = test_repo.get_manifest(tags[0])  # a Manifest object
    assert isinstance(manifest, Manifest)

    test_repo.delete_manifest(manifest.digest)  # manifests can only be deleted by digest, not by tag

    # At the moment, retrieving and deleting blobs returns a requests Response object directly
    get_blob_response = test_repo.get_blob("sha256:ce17d456b9373523c40fe294e8918a10059f63c54edd2c8ead1f3079f7fbb22a")
    delete_blob_response = test_repo.delete_blob("sha256:ce17d456b9373523c40fe294e8918a10059f63c54edd2c8ead1f3079f7fbb22a")

However, you're probably going to want to use the high-level ``get_image()`` method, which returns an ``Image`` object:

.. code-block:: python

    from dreg_client import Image, Platform

    test_image = test_repo.get_image(tags[0])
    assert isinstance(test_image, Image)

    assert test_image.repo == "testns/testrepo"
    assert test_image.tag == tags[0]

    assert test_image.platforms == {
        Platform.from_name("linux/amd64"),
        Platform.from_name("linux/arm64"),
        Platform.from_name("linux/arm/v7"),
    }

    platform_image = test_image.get_platform_image(Platform.from_name("linux/amd64"))

History
=======

dreg-client is a fork of a project named `docker-registry-client <https://github.com/yodle/docker-registry-client>`_.
While it looked good, development has stalled, with approved PRs remaining unmerged. The code design was also hostile
to strict type checking. I forked it to make some improvements, add type hints, and to resolve several outstanding
problems at the time.

This fork is not a drop-in replacement for ``docker-registry-client``. Major changes from upstream include:

- Complete removal of python2 support
- Complete removal of support for v1 registries
- A re-work of class names
- A re-work of the requests integration and registry auth service
- More higher-level abstractions, to avoid needing to dive into manifest dictionaries

Alternatives
============

* `python-dxf <https://pypi.org/project/python-dxf>`_


