The Python SDK for composition functions
Go to file
Bob Haddleton 8f6e9c20fc
Merge pull request #21 from crossplane/renovate/grpcio-tools-1.x
Update dependency grpcio-tools to v1.60.0
2023-12-07 20:16:48 -06:00
.github Update actions/setup-python action to v5 2023-12-06 12:27:19 +00:00
crossplane/function Merge pull request #16 from negz/grandmaster-flash 2023-11-21 19:10:08 -08:00
tests Add license headers 2023-11-21 19:06:10 -08:00
.gitignore Initial commit 2023-11-20 15:00:23 -08:00
LICENSE Initial commit 2023-11-20 15:00:23 -08:00
README.md Use a single lint command 2023-11-19 18:00:36 -08:00
pyproject.toml Update dependency grpcio-tools to v1.60.0 2023-12-07 19:18:51 +00:00
renovate.json Add renovate.json 2023-11-21 02:22:01 +00:00

README.md

function-sdk-python

CI GitHub release (latest SemVer)

The Python SDK for writing composition functions.

This SDK is currently a beta. We try to avoid breaking changes, but it will not have a stable API until it reaches v1.0.0. It follows the same contributing guidelines as Crossplane.

To learn how to use this SDK:

The RunFunctionRequest and RunFunctionResponse types provided by this SDK are generated from a proto3 protocol buffer schema. Their fields behave similarly to built-in Python types like lists and dictionaries, but there are some differences. Read the generated code documentation to familiarize yourself with the the differences.

Contributing

This project follows the Crossplane contributing guidelines, where applicable to Python. It is linted, tested, and built using Hatch.

Some useful commands:

# Generate gRPC stubs.
hatch run generate:protoc

# Lint the code.
hatch run lint:check

# Run unit tests.
hatch run test:unit

# Build an sdist and wheel.
hatch build