Metadata-Version: 2.1
Name: ldit
Version: 0.0.1
Summary: List Docker hub Image Tags.
Home-page: https://github.com/geekpany/ldit
Author: pany
Author-email: pany@fedoraproject.org
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests

# ldit

List Docker hub Image Tags.

## Requirements

- python>=3.2
- requests

## Installation

```
$ pip3 install -U ldit
```

## Usage

- CLI

```
ldit [-h] image [image ...]

positional arguments:
  image       image name, eg. fedora, google/debian etc.

optional arguments:
  -h, --help  show this help message and exit
```

- As module

```python
from ldit.ldit import list_tags

print(list_tags('image'))
```

## Example

- CLI

```
$ ldit google/debian fedora
The image 'google/debian' on Docker Hub got following tag(s):
jessie
wheezy
The image 'fedora' on Docker Hub got following tag(s):
31
rawhide
30
29
latest
26
27
28
branched
25
26-modular
modular
24
heisenbug
20
21
22
23
```

- As module

```
>>> from ldit.ldit import list_tags
>>> print(list_tags('google/debian'))
['jessie', 'wheezy']
>>> print(list_tags('fedora'))
['31', 'rawhide', '30', '29', 'latest', '26', '27', '28', 'branched', '25', '26-modular', 'modular', '24', 'heisenbug', '20', '21', '22', '23']
```


