Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 724 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 724 Bytes

Dockerhub Web API – Python library

This library helps you to easily interact with hub.docker.com web interface. It's really up to you how you use it whether you use cli or make your own app based on this library. This library is only Python3 compatible.

Dependencies

Possible use-cases:

  1. I need to periodically update description of my DH repo when there's a new build

    • of course it's really simple
      • dh = DockerHubWebAPI(username, password)
      • dh.update_full_description(description)
    • or by using cli interface
      • dhwebapi
  2. great for use inside jenkins tasks