This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@edgepi-cloud/rpc-protobuf

1.0.17 • Public • Published

edgepi-rpc-protobuf

Protobuf files for EdgePi RPC

Importing raw files as npm package

npm install @edgepi-cloud/rpc-protobuf

Importing python generated code

pip install edgepi-rpc-protobuf

Compiling to other languages

  • Install protobuf compiler (protoc) and install a protobuf runtime library for a supported language. Visit the official repo for steps.
  • Compile with the following command
protoc -I=. --<language>_out=. <proto_file_path>

In the command line, we trigger the protocol compiler using three arguments:

  1. -I: Specifies the directory in which we look for necessary dependencies (we utilize "." which represents the present directory).
  2. --python_out: Indicates the destination for generating a Python integration class (once again, we use "." for the current directory).
  3. The final parameter without a name designates the .proto file that will undergo compilation.

Readme

Keywords

Package Sidebar

Install

npm i @edgepi-cloud/rpc-protobuf

Weekly Downloads

2

Version

1.0.17

License

MIT

Unpacked Size

13.7 kB

Total Files

12

Last publish

Collaborators

  • admin-edgepi