Metadata-Version: 2.1
Name: cakework
Version: 0.0.39
Summary: Cakework Python SDK
Project-URL: Homepage, https://github.com/usecakework/cakework
Project-URL: Bug Tracker, https://github.com/usecakework/cakework/issues
Author-email: Jessie Young <jessie@cakework.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: grpcio
Requires-Dist: protobuf
Requires-Dist: requests
Description-Content-Type: text/markdown

# Python SDK for Cakework

## Local Development
```pip3 install .``` (in root of package, where pyproject.toml is located)


## Updating generated python protobufs
Generating the grpc files which we want to copy over to the src/cakework directory:

```
cd src/cakework
source env/bin/activate
pip install grpcio
pip install protobuf
pip install grpcio-tools
python3 -m grpc_tools.protoc -I. --python_out=. --pyi_out=. --grpc_python_out=. cakework.proto
```