Skip to main content

Python ONAP SDK

an SDK to use ONAP programmatically with Python code

Maintainability Code Coverage Documentation Status

Description

ONAP SDK is a client library written in Python for building applications to work with ONAP. The project aims to provide a consistent and complete set of interactions with ONAP’s many services, along with complete documentation, examples, and tools.

Using few python commands, you should be able to onboard, distribute models, instantiate xNFs and many others. Check doc site to find out all the features.

Installation

You can install it using pip tool

$ pip install onapsdk

Development

Before you start, ensure you have Python installation in version 3.8 or higher. Please see the official Python documentation in case you have to upgrade or install certain Python version.

Setting up development environment

Clone the project. Inside the project folder create a new virtual environment and activate it:

$ python -m venv env
$ source env/bin/activate

On Windows, activate by executing the following:

$ .\env\Scripts\activate

When your virtual environment is ready, install required dependencies:

$ pip install -r requirements.txt

Developing

To use library functions directly from the source code, execute the following to point to the source folder in PYTHONPATH variable and run the interpreter:

$ PYTHONPATH=$PYTHONPATH:src/ python

On Windows:

$ $env:PYTHONPATH='src\';python

Verify that packages are accessible:

>>> import onapsdk

You can then start working with library functions as needed.

Testing

Install tox:

$ pip install tox

To run all unit test, lint and docstyle checks, inside the project folder simply execute tox:

$ tox

Please note that the above runs unit tests on all major versions of Python available on your OS (3.7, 3.8, 3.9). To limit execution to only specific version of Python interpreter, use the following example:

$ tox -e py38

Integration testing

It is possible to run integration tests using mock-servers project. Make sure Docker Compose is available on your system. Install required dependencies:

$ pip install pytest mock

Go to integration_tests/ directory and execute:

$ docker-compose up

Please note that docker-compose attempts to create subnet 172.20.0.0/24, so it can not be run if the scope is already allocated. Also, containers are not reachable by their IP addresses on Windows host since Docker for Windows does not support bridged network interface for Linux containers.

Once containers are running, execute the following in the project's directory:

$ PYTHONPATH=$PYTHONPATH:integration_tests/:src/ ONAP_PYTHON_SDK_SETTINGS="local_urls" pytest -c /dev/null --verbose --junitxml=pytest-integration.xml integration_tests

Please make sure all the test are passing before creating merge request.

Python ONAP SDK Changelog

v14.6.0

There is no 14.5.0 release. The release pipeline had already staged a 14.5.0 artifact built before any of the changes below, and the index it stages to rejects re-uploads of a version that exists, so the version was skipped.

Added

  • Acm class for the CLAMP automation composition management runtime API (commission, prime, instantiate, deploy and the matching teardown calls).
  • Policy.get_policy_status for the PAP policy deployment status endpoint.
  • CLAMP_ACM_URL setting pointing at the in-cluster runtime-acm service.

Changed

  • Every function and method in the package now carries a return annotation, so type checkers no longer skip their bodies. This is an annotation-only change with one exception: OnapService.get_guis is declared as returning GuiList, the type all of its overrides already returned.

Fixed

  • DeletionRequest.send_request and its VfModuleDeletionRequest and NetworkDeletionRequest overrides declared return types that were wrong: Deletion and VfModuleDeletion do not exist at all, and the network variant claimed VnfDeletionRequest. Each now names the class it actually returns. Type hints only; the objects returned are unchanged.
  • 48 docstrings documented a parameter or return type that disagreed with the annotation, including [type] placeholders on the six update_informations_from_sdc* methods and platform/project in onapsdk.so.instantiation, which take a name string rather than the Platform/Project object the docstrings named.
  • onapsdk.so.instantiation could not be imported before another onapsdk module: an import cycle through the eager re-exports in onapsdk.aai.business raised ImportError. The A&AI business re-exports are now resolved lazily; the package exposes the same names as before.

v14.4.0

Added

  • add opentelemetry @tracer decorator to Service.distributions method

Removed

  • remove dependency on cryptography and pyOpenSSL since they are not actually used in the project

v1.0

Documentation

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

onapsdk-14.6.0-py3-none-any.whl (300.7 kB view details)

Uploaded Python 3

File details

Details for the file onapsdk-14.6.0-py3-none-any.whl.

File metadata

  • Download URL: onapsdk-14.6.0-py3-none-any.whl
  • Upload date:
  • Size: 300.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.6

File hashes

Hashes for onapsdk-14.6.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c900ca89bdd3e98ad803910a3ff744ee63785b33c175a3d6ab0eebc7a343c8fc
MD5 cf4a3bd4fc3be6ffc1c08ac7545ad427
BLAKE2b-256 515bb5c9e39c29a9492617ea741311a33d1f39f01613b7496b1ff96b3eb0e4f4

See more details on using hashes here.

Release history Release notifications | RSS feed

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page