Metadata-Version: 2.1
Name: marquez-python
Version: 0.14.2
Summary: Marquez Python Client
Home-page: UNKNOWN
Author: Marquez Project
License: UNKNOWN
Description: # Marquez Python Client
        
        Python client for [Marquez](https://github.com/MarquezProject/marquez).
        
        ## Documentation
        
        See the [API docs](https://marquezproject.github.io/marquez/openapi.html).
        
        ## Requirements
        
        * [Python 3.6](https://www.python.org/downloads)+
        
        ## Installation
        
        ```bash
        $ pip3 install marquez-python
        ```
        
        To install from source run:
        
        ```bash
        $ python3 setup.py install
        ```
        
        ## Usage
        
        ```python
        from marquez_client import MarquezClient
        
        client = MarquezClient(url='http://localhost:5000')
        
        # create namespace
        client.create_namespace('my-namespace', 'me', 'My first namespace!')
        ```
        
        To enable logging, set the environment variable `MARQUEZ_LOG_LEVEL` to `DEBUG`, `INFO`, or `ERROR`:
        
        ```
        $ export MARQUEZ_LOG_LEVEL='INFO'
        ```
        
        ## Development
        
        To install all dependencies for _local_ development:
        
        ```bash
        $ pip3 install -e .[dev]
        ```
        
        To run the entire test suite:
        
        ```bash
        $ pytest
        ```
        
Keywords: marquez
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: dev
