Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

Pika, an AMQP 0-9-1 client library for Python

Version Downloads Status Coverage License

Introduction

Pika is a pure-Python implementation of the AMQP 0-9-1 protocol that tries to stay fairly independent of the underlying network support library.

  • Python 2.6+ and 3.3+ are supported.

  • Since threads aren’t appropriate to every situation, it doesn’t require threads. It takes care not to forbid them, either. The same goes for greenlets, callbacks, continuations and generators. It is not necessarily thread-safe however, and your mileage will vary.

  • People may be using direct sockets, plain old select(), or any of the wide variety of ways of getting network events to and from a python application. Pika tries to stay compatible with all of these, and to make adapting it to a new environment as simple as possible.

Documentation

Pika’s documentation can be found at https://pika.readthedocs.org

Example

Here is the most simple example of use, sending a message with the BlockingConnection adapter:

import pika
connection = pika.BlockingConnection()
channel = connection.channel()
channel.basic_publish(exchange='example',
                      routing_key='test',
                      body='Test Message')
connection.close()

And an example of writing a blocking consumer:

import pika
connection = pika.BlockingConnection()
channel = connection.channel()

for method_frame, properties, body in channel.consume('test'):

    # Display the message parts and ack the message
    print method_frame, properties, body
    channel.basic_ack(method_frame.delivery_tag)

    # Escape out of the loop after 10 messages
    if method_frame.delivery_tag == 10:
        break

# Cancel the consumer and return any pending messages
requeued_messages = channel.cancel()
print 'Requeued %i messages' % requeued_messages
connection.close()

Pika provides the following adapters

  • BlockingConnection - enables blocking, synchronous operation on top of library for simple uses

  • LibevConnection - adapter for use with the libev event loop http://libev.schmorp.de

  • SelectConnection - fast asynchronous adapter

  • TornadoConnection - adapter for use with the Tornado IO Loop http://tornadoweb.org

  • TwistedConnection - adapter for use with the Twisted asynchronous package http://twistedmatrix.com/

Contributing

To contribute to pika, please make sure that any new features or changes to existing functionality include test coverage. Additionally, please format your code using yapf with google style prior to issuing your pull request.

Release files for pika 0.10.0b2

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pika 0.10.0b2
File Size Uploaded
pika-0.10.0b2.tar.gz 81.7 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for pika 0.10.0b2
File Interpreter ABI Platform
pika-0.10.0b2-py2.py3-none-any.whl Python 2, Python 3 none any Details

Total release size: 174.4 kB

Release files / pika-0.10.0b2.tar.gz

Download URL pika-0.10.0b2.tar.gz
Size 81.7 kB
Tags Source
SHA-256 checksum
How to use checksums
f54e133dc0130420889e64cf0f2df8d6c7a67647c37a80b4f56350bd3a83d29a
BLAKE2b-256 checksum
How to use checksums
82ccbbf6c8218eb5a4776f10b9f9f2ffb94ce7d4f2767261348ba0ef5323cd3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release files / pika-0.10.0b2-py2.py3-none-any.whl

Download URL pika-0.10.0b2-py2.py3-none-any.whl
Size 92.7 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
4b34fd677aec6d3519e672aa33810badfd94c6c1731f9f36583128285de69340
BLAKE2b-256 checksum
How to use checksums
7d3cea655579100254db42ae244333c94de558c146ece4dd709a77c37195f5d5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No

Release history Release notifications | RSS feed

1.4.4

2 release files

1.4.2

2 release files

1.4.1

2 release files

1.4.0

2 release files

1.3.2

2 release files

1.3.1

2 release files

1.3.0

2 release files

1.2.1

2 release files

1.2.0

2 release files

1.1.0

2 release files

1.0.1

2 release files

1.0.0

2 release files

0.13.0

2 release files

0.12.0

2 release files

0.11.2

2 release files

0.11.1

2 release files

0.11.0

2 release files

This release

0.10.0b2 This release

2 release files

0.9.14

1 release file

0.9.13

1 release file

0.9.12

1 release file

0.9.11

1 release file

0.9.10

1 release file

0.9.9

1 release file

0.9.8

1 release file

0.9.7

1 release file

0.9.6

1 release file

0.9.5

1 release file

0.9.4

1 release file

0.9.3

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page