Python client library for Central Dogma.
$ pip install centraldogma-python
Only URL indicating CentralDogma server and access token are required.
>>> from centraldogma.dogma import Dogma
>>> dogma = Dogma("https://dogma.yourdomain.com", "token")
>>> dogma.list_projects()
[]It supports client configurations.
>>> retries, max_connections = 5, 10
>>> dogma = Dogma("https://dogma.yourdomain.com", "token", retries=retries, max_connections=max_connections)Please see examples folder for more detail.
See CONTRIBUTING.md