https://github.com/robmarkcole/simple-google-vision
Unofficial helper utilities for Google Vision
https://github.com/robmarkcole/simple-google-vision
Last synced: 12 months ago
JSON representation
Unofficial helper utilities for Google Vision
- Host: GitHub
- URL: https://github.com/robmarkcole/simple-google-vision
- Owner: robmarkcole
- License: apache-2.0
- Created: 2019-10-21T03:18:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-14T07:34:46.000Z (almost 4 years ago)
- Last Synced: 2025-06-09T00:37:54.466Z (about 1 year ago)
- Language: Jupyter Notebook
- Homepage: https://cloud.google.com/vision/
- Size: 215 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- 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/simple-google-vision/)
[](https://travis-ci.com/robmarkcole/simple-google-vision)
# simple-google-vision
Unofficial helper utilities for using the [Google Vision API](https://pypi.org/project/google-cloud-vision/). Currently supports object detection with functions for processing the list of objects returned by the API. See the [`usage.ipynb`](https://github.com/robmarkcole/simple-google-vision/blob/master/usage.ipynb) notebook for usage.
## Google Vision API key file & API Pricing
Follow the instructions on https://cloud.google.com/docs/authentication/getting-started to download your Google Vision API key, which is a `.json` file.
[Read pricing](https://cloud.google.com/vision/pricing). The first 1000 calls per month are free, additional calls are charged.
## Development
* Use `venv` -> `python3 -m venv venv` & `source venv/bin/activate`
* `pip install -e .`
* `pip install -r requirements-dev.txt`
* Run tests with `venv/bin/pytest tests/* --disable-warnings`
* Black format with `venv/bin/black gvision/core.py` and `venv/bin/black tests/test_gvision.py`