Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wh1isper/camonline
https://github.com/wh1isper/camonline
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/wh1isper/camonline
- Owner: Wh1isper
- License: bsd-3-clause
- Created: 2023-09-01T07:00:12.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-08-06T01:37:40.000Z (3 months ago)
- Last Synced: 2024-09-06T04:04:48.345Z (2 months ago)
- Language: Python
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![](https://img.shields.io/github/license/wh1isper/camonline)
![](https://img.shields.io/github/v/release/wh1isper/camonline)
![](https://img.shields.io/pypi/dm/camonline)
![](https://img.shields.io/github/last-commit/wh1isper/camonline)
![](https://img.shields.io/pypi/pyversions/camonline)# camonline
Make your computer camera a monitor
## Install
`pip install camonline`
## Usage
```bash
docker run -d --restart always \
--name camonline \
--device=/dev/video0:/dev/video0 \
-v ~/.camonline:/root/.camonline \
wh1isper/camonline
```## Develop
Install pre-commit before commit
```
pip install pre-commit
pre-commit install
```Install package locally
```
pip install -e .[test]
```Run unit-test before PR, **ensure that new features are covered by unit tests**
```
pytest -v
```