mirror of https://github.com/celery/kombu.git
Canonical repo moved to https://github.com/celery/kombu
This commit is contained in:
parent
0da350abe1
commit
ab43b94eb7
21
README.rst
21
README.rst
|
@ -27,12 +27,18 @@ Features
|
||||||
* AMQP transports for both the `amqplib`_ (sync) and
|
* AMQP transports for both the `amqplib`_ (sync) and
|
||||||
`pika`_ (sync + async) clients.
|
`pika`_ (sync + async) clients.
|
||||||
|
|
||||||
|
* Fast AMQP transport using `librabbitmq`_, written in C.
|
||||||
|
|
||||||
|
This is automatically enabled if :mod:`librabbitmq` is installed::
|
||||||
|
|
||||||
|
$ pip install librabbitmq
|
||||||
|
|
||||||
* Virtual transports makes it really easy to add support for non-AMQP
|
* Virtual transports makes it really easy to add support for non-AMQP
|
||||||
transports. There is already built-in support for `Redis`_,
|
transports. There is already built-in support for `Redis`_,
|
||||||
`Beanstalk`_, `Amazon SQS`_, `CouchDB`_, and `MongoDB`_.
|
`Beanstalk`_, `Amazon SQS`_, `CouchDB`_, and `MongoDB`_.
|
||||||
|
|
||||||
* SQLAlchemy and Django ORM transports exists as plug-ins (
|
* You can also use the SQLAlchemy and Django ORM transports to
|
||||||
`kombu-sqlalchemy`_ and `django-kombu`_).
|
use a database as the broker.
|
||||||
|
|
||||||
* In-memory transport for unit testing.
|
* In-memory transport for unit testing.
|
||||||
|
|
||||||
|
@ -67,9 +73,8 @@ and the `Wikipedia article about AMQP`_.
|
||||||
.. _`amqplib`: http://barryp.org/software/py-amqplib/
|
.. _`amqplib`: http://barryp.org/software/py-amqplib/
|
||||||
.. _`pika`: http://github.com/pika/pika
|
.. _`pika`: http://github.com/pika/pika
|
||||||
.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
|
.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
|
||||||
.. _`kombu-sqlalchemy`: http://github.com/ask/kombu-sqlalchemy/
|
|
||||||
.. _`django-kombu`: http://github.com/ask/django-kombu/
|
|
||||||
.. _`carrot`: http://pypi.python.org/pypi/carrot/
|
.. _`carrot`: http://pypi.python.org/pypi/carrot/
|
||||||
|
.. _`librabbitmq`: http://pypi.python.org/pypi/librabbitmq
|
||||||
|
|
||||||
|
|
||||||
Transport Comparison
|
Transport Comparison
|
||||||
|
@ -111,9 +116,9 @@ Transport Comparison
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Kombu is using Sphinx, and the latest documentation is available at GitHub:
|
Kombu is using Sphinx, and the latest documentation can be found here:
|
||||||
|
|
||||||
http://ask.github.com/kombu
|
http://kombu.readthedocs.org/
|
||||||
|
|
||||||
Quick overview
|
Quick overview
|
||||||
--------------
|
--------------
|
||||||
|
@ -298,12 +303,12 @@ Bug tracker
|
||||||
===========
|
===========
|
||||||
|
|
||||||
If you have any suggestions, bug reports or annoyances please report them
|
If you have any suggestions, bug reports or annoyances please report them
|
||||||
to our issue tracker at http://github.com/ask/kombu/issues/
|
to our issue tracker at http://github.com/celery/kombu/issues/
|
||||||
|
|
||||||
Contributing
|
Contributing
|
||||||
============
|
============
|
||||||
|
|
||||||
Development of `Kombu` happens at Github: http://github.com/ask/kombu
|
Development of `Kombu` happens at Github: http://github.com/celery/kombu
|
||||||
|
|
||||||
You are highly encouraged to participate in the development. If you don't
|
You are highly encouraged to participate in the development. If you don't
|
||||||
like Github (for some reason) you're welcome to send regular patches.
|
like Github (for some reason) you're welcome to send regular patches.
|
||||||
|
|
2
TODO
2
TODO
|
@ -1,2 +1,2 @@
|
||||||
Please see our Issue Tracker at GitHub:
|
Please see our Issue Tracker at GitHub:
|
||||||
http://github.com/ask/kombu/issues
|
http://github.com/celery/kombu/issues
|
||||||
|
|
|
@ -35,7 +35,7 @@ setup(
|
||||||
description="Functional test suite for Kombu",
|
description="Functional test suite for Kombu",
|
||||||
author="Ask Solem",
|
author="Ask Solem",
|
||||||
author_email="ask@celeryproject.org",
|
author_email="ask@celeryproject.org",
|
||||||
url="http://github.com/ask/kombu",
|
url="http://github.com/celery/kombu",
|
||||||
platforms=["any"],
|
platforms=["any"],
|
||||||
packages=[],
|
packages=[],
|
||||||
data_files=[],
|
data_files=[],
|
||||||
|
|
|
@ -5,7 +5,7 @@ VERSION = (2, 2, 0, "rc2")
|
||||||
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
|
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
|
||||||
__author__ = "Ask Solem"
|
__author__ = "Ask Solem"
|
||||||
__contact__ = "ask@celeryproject.org"
|
__contact__ = "ask@celeryproject.org"
|
||||||
__homepage__ = "http://github.com/ask/kombu/"
|
__homepage__ = "http://kombu.readthedocs.org"
|
||||||
__docformat__ = "restructuredtext en"
|
__docformat__ = "restructuredtext en"
|
||||||
|
|
||||||
# -eof meta-
|
# -eof meta-
|
||||||
|
|
Loading…
Reference in New Issue