38 lines
800 B
ReStructuredText
38 lines
800 B
ReStructuredText
Introduction to Pika
|
|
====================
|
|
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.
|
|
|
|
If you have not developed with Pika or RabbitMQ before, the :doc:`intro` documentation is a good place to get started.
|
|
|
|
Installing Pika
|
|
---------------
|
|
Pika is available for download via PyPI and may be installed using easy_install or pip::
|
|
|
|
pip install pika
|
|
|
|
or::
|
|
|
|
easy_install pika
|
|
|
|
To install from source, run "python setup.py install" in the root source directory.
|
|
|
|
Using Pika
|
|
----------
|
|
.. toctree::
|
|
:glob:
|
|
:maxdepth: 1
|
|
|
|
intro
|
|
modules/index
|
|
examples
|
|
faq
|
|
contributors
|
|
version_history
|
|
|
|
Indices and tables
|
|
------------------
|
|
|
|
* :ref:`genindex`
|
|
* :ref:`modindex`
|
|
* :ref:`search`
|