Metadata-Version: 2.1
Name: zeptron
Version: 0.0.1
Summary: A super lightweight streaming module using ZMQ
Home-page: https://github.com/zeptron/zeptron
Author: Jose Mathias
Author-email: hello@zeptron.co
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# zeptron live streaming to any server / port using TCP 

This package provides the code to stream from webcam, USB camera, or Raspberry Pi to any IP address and port number. 

## Installation

Simple install the package using: 

`pip install zeptron`

## Use

Then run it using the following command: 

`zeptron -i IP_ADDRESS -p PORT -r True`

The flags are as follows: 

`-i / --ip`
IP address of server, required

`-p / --port`
Port of server, required, use 5555 as default

`-r / --raspberry`
If streaming from Raspberry Pi, set to True, else do not use

## Intended purpose

This library is intended to be used with the [zeptron.co](https://zeptron.co) model-agnostic platform for using artificial intelligence models for computer vision, although you can use it for any project where you need a super low-latency, high definition feed and want to avoid paying Amazon ridiculous fees for using Amazon Kinesis Video

## Credits

This package borrows heavily from: 

- [ZeroMQ](https://zeromq.org/)
- [ImageZMQ](https://zeromq.org/)
- [PyImageSearch](https://www.pyimagesearch.com/2019/04/15/live-video-streaming-over-network-with-opencv-and-imagezmq/)

