onos-api


Nameonos-api JSON
Version 0.10.31 PyPI version JSON
download
home_pagehttps://github.com/onosproject/onos-api/
SummaryONOS Python API
upload_time2023-03-30 17:16:10
maintainer
docs_urlNone
authorOpen Networking Foundation (ONF) and Partners
requires_python>=3.6
licenseApache License v2.0
keywords onos-api python protobuf gnmi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--
SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>
SPDX-License-Identifier: Apache-2.0
-->

# onos-api
gRPC API definitions for the µONOS platform

## Overview
This repository houses not only the `.proto` files, but also a number of automatically generated artifacts, e.g. `.pb.go`, `.py` files and similarly for other languages that may be added in the future.

The source tree structure is paritioned into `proto`, which contains the canonical protobuf definitions and a top-level directory for each of the supported languages. The structure within each of the language-specific directories reflects the idoms and conventions appropriate to each language.

## Proto
The top-level package for the protobuf definitions is `onos` and the next level subpackage is the name of the particular platform subsystem, such as `config`, `topo`, etc. This directory tree should contain exclusively the `.proto` files and not be tainted by any other artifacts, especially any language-specific ones.

The proto files are compiled and processed via `build/bin/compile-protos.sh` script, which is invoked by the `Makefile`. All protofiles here should follow the established guidelines and must pass the protobuf lint checker enforcing these conventions.

## Golang
The `go` source tree holds the automatically-generated `.pb.go` artifacts and also any manually authored `.go` source files written in support of the Golang bindings. To minimize the churn and to exercise tighter control over versioning, the generated files are also versioned and maintained in the SCM repo.

The root package of the module is `github.com/onosproject/onos-api/go/onos`, with subpackages being named after each of the platform subsystems, mirroring the structure of the `proto` packages. Golang projects that wish to import µONOS API packages should include the following in the requirements section of their `go.mod` file:

```go
require (
  ...
	github.com/onosproject/onos-api/go v0.6.1
  ...
)

```

Additionally, Go bindings are generated with mocks for testing with [gomock]. Mocks of Protobuf interfaces can be constructed via the same package as the interfaces they mock:

```go
import topoapi "github.com/onosproject/onos-api/go/onos/topo"
...
mockClient := topoapi.NewMockTopoClient(ctrl)
```

## Python

The `python` source tree holds gRPC bindings are generated for [Python]. Pyhton bindings are generated with the [python-betterproto] protoc plugin and support Python3's `asyncio` framework.

[gomock]: https://github.com/golang/mock
[Go]: https://golang.org/
[Protobuf]: https://developers.google.com/protocol-buffers
[Python]: https://www.python.org
[python-betterproto]: https://github.com/danielgtaylor/python-betterproto
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/onosproject/onos-api/",
    "name": "onos-api",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "onos-api,python,protobuf,gnmi",
    "author": "Open Networking Foundation (ONF) and Partners",
    "author_email": "support@opennetworking.org",
    "download_url": "https://files.pythonhosted.org/packages/d6/ec/fb73ba27b9d4ac003cd757691cedefebff8440a1db72005a3f6d5e0bbd45/onos-api-0.10.31.tar.gz",
    "platform": null,
    "description": "<!--\nSPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org>\nSPDX-License-Identifier: Apache-2.0\n-->\n\n# onos-api\ngRPC API definitions for the \u00b5ONOS platform\n\n## Overview\nThis repository houses not only the `.proto` files, but also a number of automatically generated artifacts, e.g. `.pb.go`, `.py` files and similarly for other languages that may be added in the future.\n\nThe source tree structure is paritioned into `proto`, which contains the canonical protobuf definitions and a top-level directory for each of the supported languages. The structure within each of the language-specific directories reflects the idoms and conventions appropriate to each language.\n\n## Proto\nThe top-level package for the protobuf definitions is `onos` and the next level subpackage is the name of the particular platform subsystem, such as `config`, `topo`, etc. This directory tree should contain exclusively the `.proto` files and not be tainted by any other artifacts, especially any language-specific ones.\n\nThe proto files are compiled and processed via `build/bin/compile-protos.sh` script, which is invoked by the `Makefile`. All protofiles here should follow the established guidelines and must pass the protobuf lint checker enforcing these conventions.\n\n## Golang\nThe `go` source tree holds the automatically-generated `.pb.go` artifacts and also any manually authored `.go` source files written in support of the Golang bindings. To minimize the churn and to exercise tighter control over versioning, the generated files are also versioned and maintained in the SCM repo.\n\nThe root package of the module is `github.com/onosproject/onos-api/go/onos`, with subpackages being named after each of the platform subsystems, mirroring the structure of the `proto` packages. Golang projects that wish to import \u00b5ONOS API packages should include the following in the requirements section of their `go.mod` file:\n\n```go\nrequire (\n  ...\n\tgithub.com/onosproject/onos-api/go v0.6.1\n  ...\n)\n\n```\n\nAdditionally, Go bindings are generated with mocks for testing with [gomock]. Mocks of Protobuf interfaces can be constructed via the same package as the interfaces they mock:\n\n```go\nimport topoapi \"github.com/onosproject/onos-api/go/onos/topo\"\n...\nmockClient := topoapi.NewMockTopoClient(ctrl)\n```\n\n## Python\n\nThe `python` source tree holds gRPC bindings are generated for [Python]. Pyhton bindings are generated with the [python-betterproto] protoc plugin and support Python3's `asyncio` framework.\n\n[gomock]: https://github.com/golang/mock\n[Go]: https://golang.org/\n[Protobuf]: https://developers.google.com/protocol-buffers\n[Python]: https://www.python.org\n[python-betterproto]: https://github.com/danielgtaylor/python-betterproto",
    "bugtrack_url": null,
    "license": "Apache License v2.0",
    "summary": "ONOS Python API",
    "version": "0.10.31",
    "split_keywords": [
        "onos-api",
        "python",
        "protobuf",
        "gnmi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6ecfb73ba27b9d4ac003cd757691cedefebff8440a1db72005a3f6d5e0bbd45",
                "md5": "91b09823ba94e270d6513cba828cd591",
                "sha256": "711cc5682e01e2305cf0f7d92f7323a3650f7d741473177069b6ed1bd1d3260b"
            },
            "downloads": -1,
            "filename": "onos-api-0.10.31.tar.gz",
            "has_sig": false,
            "md5_digest": "91b09823ba94e270d6513cba828cd591",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 42823,
            "upload_time": "2023-03-30T17:16:10",
            "upload_time_iso_8601": "2023-03-30T17:16:10.957473Z",
            "url": "https://files.pythonhosted.org/packages/d6/ec/fb73ba27b9d4ac003cd757691cedefebff8440a1db72005a3f6d5e0bbd45/onos-api-0.10.31.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-30 17:16:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "onosproject",
    "github_project": "onos-api",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "onos-api"
}
        
Elapsed time: 0.06573s