Metadata-Version: 2.1
Name: zeptron
Version: 1.0.2
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
Requires-Dist: imagezmq (==1.1.1)
Requires-Dist: imutils (==0.5.3)
Requires-Dist: numpy (==1.19.0)
Requires-Dist: opencv-python (==4.2.0.34)
Requires-Dist: pyzmq (==19.0.1)

# 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`

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/)

