https://github.com/sift-stack/sift
Sift client libraries and protocol buffers
https://github.com/sift-stack/sift
aerospace energy golang grpc hardware protobuf python rust streaming telemetry time-series transportation
Last synced: about 2 months ago
JSON representation
Sift client libraries and protocol buffers
- Host: GitHub
- URL: https://github.com/sift-stack/sift
- Owner: sift-stack
- License: mit
- Created: 2024-04-02T18:11:16.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-17T18:58:01.000Z (10 months ago)
- Last Synced: 2024-12-17T19:42:29.826Z (10 months ago)
- Topics: aerospace, energy, golang, grpc, hardware, protobuf, python, rust, streaming, telemetry, time-series, transportation
- Language: Rust
- Homepage: https://docs.siftstack.com/
- Size: 43.6 MB
- Stars: 10
- Watchers: 3
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Sift
[](https://github.com/sift-stack/sift/actions)
[](https://github.com/sift-stack/sift/actions)
[](https://github.com/sift-stack/sift/actions)
[](https://github.com/sift-stack/sift/actions)
[](https://pypi.org/project/sift-stack-py/)
[](https://crates.io/crates/sift_rs)
[](https://crates.io/crates/sift_stream)
[](https://pkg.go.dev/github.com/sift-stack/sift/go)This repository contains client libraries and protocol buffers to interact with Sift's API in various languages. Each client library contains pre-compiled protocol buffers, but should you wish
to compile the protocol buffers yourself there are instructions on how to go about it in the [Manual Protobuf Compilation](#manual-protobuf-compilation) section.## Table of Contents
* [Installation](#installation)
- [Installation via Package Managers](#installation-via-package-managers)
- [Go](#go)
- [Rust](#rust)
- [Python](#python)
- [Manual Protobuf Compilation](#manual-protobuf-compilation)
* [Examples](#examples)## Installation
The Sift client library can be installed using the package managers for the languages that are currently supported. If you are using a language that isn't officially supported see
the [Manual Protobuf Compilation](#manual-protobuf-compilation) section.### Installation via Package Managers
The following demonstrates how to install the Sift client library for each supported language.
#### Python
```
$ pip install sift-stack-py
```#### Rust
```
$ cargo add sift_rs sift_stream
```#### Go
```
$ go get github.com/sift-stack/sift/go
```### Manual Protobuf Compilation
For manual installation instructions for a particular supported programming language, click on one of the following links:
- [Go](/docs/go.md)
- [Rust](/docs/rust.md)
- [Python](/docs/python.md)
- [C++](/cpp/README.md)Please keep in mind that the manual installation instructions aims to be general and do not need to be strictly followed. Users are encouraged to modify any of the steps or proceed with a custom setup if it better suits the needs of their project.