https://github.com/cloudquery/plugin-pb-python
CloudQuery Plugin Python low level API
https://github.com/cloudquery/plugin-pb-python
Last synced: 5 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 (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-26T10:16:24.000Z (13 days ago)
- Last Synced: 2025-06-30T11:18:57.496Z (9 days ago)
- Language: Python
- Homepage: https://cloudquery.io
- Size: 297 KB
- Stars: 3
- Watchers: 10
- 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
```