1Metadata-Version: 1.1
2Name: docker-pycreds
3Version: 0.4.0
4Summary: Python bindings for the docker credentials store API
5Home-page: https://github.com/shin-/dockerpy-creds
6Author: UNKNOWN
7Author-email: UNKNOWN
8License: Apache License 2.0
9Description: # docker-pycreds
10
11        [![CircleCI](https://circleci.com/gh/shin-/dockerpy-creds/tree/master.svg?style=svg)](https://circleci.com/gh/shin-/dockerpy-creds/tree/master)
12
13        Python bindings for the docker credentials store API
14
15        ## Credentials store info
16
17        [Docker documentation page](https://docs.docker.com/engine/reference/commandline/login/#/credentials-store)
18
19        ## Requirements
20
21        On top of the dependencies in `requirements.txt`, the `docker-credential`
22        executable for the platform must be installed on the user's system.
23
24        ## API usage
25
26        ```python
27
28        import dockerpycreds
29
30        store = dockerpycreds.Store('secretservice')
31        store.store(
32            server='https://index.docker.io/v1/', username='johndoe',
33            secret='hunter2'
34        )
35
36        print(store.list())
37
38        print(store.get('https://index.docker.io/v1/'))
39
40
41        store.erase('https://index.docker.io/v1/')
42        ```
43
44Platform: UNKNOWN
45Classifier: Development Status :: 4 - Beta
46Classifier: Environment :: Other Environment
47Classifier: Intended Audience :: Developers
48Classifier: Operating System :: OS Independent
49Classifier: Programming Language :: Python
50Classifier: Programming Language :: Python :: 2
51Classifier: Programming Language :: Python :: 2.6
52Classifier: Programming Language :: Python :: 2.7
53Classifier: Programming Language :: Python :: 3
54Classifier: Programming Language :: Python :: 3.3
55Classifier: Programming Language :: Python :: 3.4
56Classifier: Programming Language :: Python :: 3.5
57Classifier: Programming Language :: Python :: 3.6
58Classifier: Topic :: Utilities
59Classifier: License :: OSI Approved :: Apache Software License
60