Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cloudquery/plugin-pb-python
CloudQuery Plugin Python low level API
https://github.com/cloudquery/plugin-pb-python
Last synced: about 2 months ago
JSON representation
CloudQuery Plugin Python low level API
- Host: GitHub
- URL: https://github.com/cloudquery/plugin-pb-python
- Owner: cloudquery
- License: mpl-2.0
- Created: 2023-07-20T20:27:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-01T08:03:01.000Z (2 months ago)
- Last Synced: 2024-11-01T09:17:34.573Z (2 months ago)
- Language: Python
- Homepage: https://cloudquery.io
- Size: 254 KB
- Stars: 3
- Watchers: 7
- Forks: 1
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# plugin-pb-python
This is a low-level auto-generated gRPC client and server for CloudQuery plugin from [plugin-pb protos](https://github.com/cloudquery/plugin-pb).
## Development
### Prerequisites
- [Python 3.7+](https://www.python.org/downloads/)
we recommend using virtualenv to manage your python environment.
```bash
virtualenv -p python3.7 venv # or any python >= 3.7
source venv/bin/activate
```### Install dependencies
```bash
pip install -r requirements.txt
```### Regenerate gRPC code
```bash
make clone-proto # This is needed only once
make gen
```