Python client for Marquez.
This library is under active development at Datakin.
See the API docs.
$ pip3 install marquez-python
To install from source run:
$ python3 setup.py install
from marquez_client import MarquezClient
client = MarquezClient(url='http;//localhost:5000')
# create namespace
client.create_namespace('example-namespace', 'example-owner', 'example description')
To enable logging, set the environment variable MARQUEZ_LOG_LEVEL
to DEBUG
, INFO
, or ERROR
:
$ export MARQUEZ_LOG_LEVEL='INFO'
See CONTRIBUTING.md for more details about how to contribute.