https://github.com/robmarkcole/simplehound
Unofficial python API for Sighthound Cloud
https://github.com/robmarkcole/simplehound
Last synced: about 1 year ago
JSON representation
Unofficial python API for Sighthound Cloud
- Host: GitHub
- URL: https://github.com/robmarkcole/simplehound
- Owner: robmarkcole
- License: apache-2.0
- Created: 2019-11-03T06:08:31.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-29T08:42:59.000Z (over 5 years ago)
- Last Synced: 2025-05-11T04:14:31.845Z (about 1 year ago)
- Language: Jupyter Notebook
- Homepage: https://www.sighthound.com/products/cloud
- Size: 10.5 MB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/ambv/black)
[](https://pypi.org/project/simplehound/)
# simplehound
Unofficial python API for Sighthound, providing helper functions and classes for processing images and parsing the data returned by Sighthound cloud. Face, person and license plate detection are supported. See the `usage.ipynb` notebook for example usage.
## Development
* Create venv -> `$ python3 -m venv venv`
* Use venv -> `$ source venv/bin/activate`
* Install requirements -> `$ pip install -r requirements.txt` & `$ pip install -r requirements-dev.txt`
* Run tests -> `$ venv/bin/py.test --cov=simplehound tests/`
* Black format -> `$ venv/bin/black simplehound/core.py` and `$ venv/bin/black tests/test_simplehound.py` (or setup VScode for format on save)
* Sort imports -> `$ venv/bin/isort simplehound/core.py`
* To run the usage notebook, install `jupyter` in the venv and run `$ jupyter notebook`