Metadata-Version: 2.1
Name: onapsdk
Version: 1.0.0
Summary: SDK to use ONAP Programatically
Home-page: https://gitlab.com/Orange-OpenSource/lfn/onap/python-onapsdk
Author: Orange OpenSource
License: Apache 2.0
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: <4,>=3.7
Description-Content-Type: text/markdown
Requires-Dist: requests[socks] (==2.24.0)
Requires-Dist: jinja2 (==2.11.2)
Requires-Dist: simplejson (==3.17.0)
Requires-Dist: oyaml (==0.9)

# Python ONAP SDK

an SDK to use ONAP programmatically with Python code

[![Maintainability](https://api.codeclimate.com/v1/badges/858bb5b1aed4b42da2d2/maintainability)](https://codeclimate.com/github/Orange-OpenSource/python-onapsdk/maintainability)
[![Code Coverage](https://gitlab.com/Orange-OpenSource/lfn/onap/python-onapsdk/badges/master/coverage.svg)](https://gitlab.com/Orange-OpenSource/lfn/onap/python-onapsdk/)
[![Documentation Status](https://readthedocs.org/projects/python-onapsdk/badge/?version=latest)](https://python-onapsdk.readthedocs.io/en/latest/?badge=latest)

## Custom settings

It's possible to use custom settings to overwrite custom values or add new one
to `onapsdk.configuration.settings` module. Pass the path to your settings
module as an environment variable `ONAP_PYTHON_SDK_SETTINGS`. If your file
structure looks:

```shell
module
|
|-- my_settings.py
|
|-- my_awesome_script.py
```

you can just call:

```shell
ONAP_PYTHON_SDK_SETTINGS=my_settings my_awesome_script.py
```

and then all uppercase attributes from `my_settings.py` will be available in
`onapsdk.configuration.settings` module.

[~ Dependencies scanned by PyUp.io ~]

# Python ONAP SDK Changelog

## v1.0

[Documentation](https://readthedocs.org/dashboard/python-onapsdk/version/v1.0)

Main new features:

- Onboard a simple service via SDC
- Instantiate a simple service via SO using GR API
- Instantiate a simple service via NBI
- create business objects in AAI


