Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 1.28 KB

README.md

File metadata and controls

38 lines (22 loc) · 1.28 KB

Build Status codecov PyPI PyPI - Python Version Documentation Status

nlbsg

Python SDK for the NLB Open Web Services

Currently supports the Catalogue Service.

Installation

pip install nlbsg

Usage

Refer to the documentation at https://nlbsg.readthedocs.io/en/latest/.

Development

nlbsg uses Pipenv for package management.

black is used for code formatting. Install the pre-commit hook with:

make hooks

To install development dependencies:

pipenv install --dev

To run the test suite and output coverage information:

pipenv run python -m pytest -vv --cov

Or just:

make test