https://github.com/wrieg123/csp-adapter-zeromq
A CSP Adapter for the ZeroMQ Universal Messaging Library
https://github.com/wrieg123/csp-adapter-zeromq
cpp python stream-processing streaming zeromq
Last synced: about 2 months ago
JSON representation
A CSP Adapter for the ZeroMQ Universal Messaging Library
- Host: GitHub
- URL: https://github.com/wrieg123/csp-adapter-zeromq
- Owner: wrieg123
- License: apache-2.0
- Created: 2024-11-17T23:06:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-25T15:07:39.000Z (12 months ago)
- Last Synced: 2025-06-25T16:26:01.283Z (12 months ago)
- Topics: cpp, python, stream-processing, streaming, zeromq
- Language: C++
- Homepage:
- Size: 74.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# csp adapter zeromq
A [csp](https://github.com/point72/csp) adapter for [zeromq](https://zeromq.org).
## Features
Exposes the following patterns:
- Pub / Sub
- Push / Pull
In progress:
- Req / Rep
## Development
We utilize conda for managing environment dependencies. In order to create your development environment:
```bash
git clone https://github.com/wrieg123/csp-adapter-zeromq.git
cd csp-adapter-zeromq
micromamba create -n csp-zmq -f conda/dev-env-unix.yml
micromamba activate csp-zmq
make requirements
```
Building C++:
```bash
make build
```
Installing Python:
```bash
make develop
```
Tests:
```bash
make test
```