We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7efbf6 commit 86e3e77Copy full SHA for 86e3e77
src/cloudevents/core/bindings/__init__.py
@@ -12,20 +12,9 @@
12
# License for the specific language governing permissions and limitations
13
# under the License.
14
15
-from cloudevents.core.bindings.http import (
16
- HTTPMessage,
17
- from_binary,
18
- from_http,
19
- from_structured,
20
- to_binary,
21
- to_structured,
22
-)
+"""
+CloudEvents protocol bindings.
23
24
-__all__ = [
25
- "HTTPMessage",
26
- "to_binary",
27
- "from_binary",
28
- "to_structured",
29
- "from_structured",
30
- "from_http",
31
-]
+This package provides protocol-specific bindings for CloudEvents, including HTTP and Kafka.
+Each binding module provides functions to convert CloudEvents to/from protocol-specific messages.
0 commit comments