Python client for Marquez.
This library is under active development at The We Company.
See the API docs.
$ pip install marquez-python
To install from source run:
$ python setup.py install
from marquez_client import MarquezClient
client = MarquezClient()
# list namespaces
client.list_namespaces()
# retrieve a job
client.get_job('room_bookings_7_days')
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.