Skip to content

update python documentation #2260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion client-libraries/amqp-client-libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,8 @@ PublishResult pr = await publisher.PublishAsync(message);

```python title="Publishing a message"
# create the message
message = Message(body="Hello")
# body is a byte array. You can use the Converter utility class
message = Message(body=Converter.string_to_bytes("Hello"))
# publish the message and deal with broker feedback
# The result is synchronous
status = publisher.publish(Message(message)
Expand Down Expand Up @@ -662,6 +663,9 @@ class MyMessageHandler(AMQPMessagingHandler):

def on_message(self, event: Event):
# ...
# event.message.body is a byte array. If you have string
# you can use Converter utility class, like:
# my_body_string=Converter.bytes_to_string(event.message.body)

self.delivery_context.accept(event)# settle the message

Expand Down