Skip to content

yi-jiayu/nlbsg

Repository files navigation

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