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.
$ pytest
-
Run local Central Dogma server with docker-compose
$ docker-compose up -d
-
Run integration tests
$ INTEGRATION_TEST=true pytest
-
Stop the server
$ docker-compose down
- PEP 8
$ black .
$ pip install sphinx sphinx_rtd_theme
$ cd docs && make html