https://github.com/cloudquery/plugin-pb-python
CloudQuery Plugin Python low level API
https://github.com/cloudquery/plugin-pb-python
Last synced: 25 days 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 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-01T08:49:28.000Z (6 months ago)
- Last Synced: 2025-08-18T11:57:09.373Z (5 months ago)
- Language: Python
- Homepage: https://cloudquery.io
- Size: 308 KB
- Stars: 3
- Watchers: 10
- Forks: 1
- Open Issues: 1
-
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
```