Python client for Marquez.
This library is under active development at The We Company.
See the API docs.
$ pip3 install marquez-pythonTo install from source run:
$ python3 setup.py installfrom marquez_client import MarquezClient
client = MarquezClient()
# 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.