Skip to content

Commit

Permalink
Canonical repo moved to https://github.com/celery/kombu
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Jun 6, 2012
1 parent 0da350a commit ab43b94
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
21 changes: 13 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,18 @@ Features
* AMQP transports for both the `amqplib`_ (sync) and
`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
transports. There is already built-in support for `Redis`_,
`Beanstalk`_, `Amazon SQS`_, `CouchDB`_, and `MongoDB`_.

* SQLAlchemy and Django ORM transports exists as plug-ins (
`kombu-sqlalchemy`_ and `django-kombu`_).
* You can also use the SQLAlchemy and Django ORM transports to
use a database as the broker.

* In-memory transport for unit testing.

Expand Down Expand Up @@ -67,9 +73,8 @@ and the `Wikipedia article about AMQP`_.
.. _`amqplib`: http://barryp.org/software/py-amqplib/
.. _`pika`: http://github.com/pika/pika
.. _`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/
.. _`librabbitmq`: http://pypi.python.org/pypi/librabbitmq


Transport Comparison
Expand Down Expand Up @@ -111,9 +116,9 @@ Transport Comparison
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
--------------
Expand Down Expand Up @@ -298,12 +303,12 @@ Bug tracker
===========

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
============

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
like Github (for some reason) you're welcome to send regular patches.
Expand Down
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Please see our Issue Tracker at GitHub:
http://github.com/ask/kombu/issues
http://github.com/celery/kombu/issues
2 changes: 1 addition & 1 deletion funtests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(self, *args, **kwargs):
description="Functional test suite for Kombu",
author="Ask Solem",
author_email="[email protected]",
url="http://github.com/ask/kombu",
url="http://github.com/celery/kombu",
platforms=["any"],
packages=[],
data_files=[],
Expand Down
2 changes: 1 addition & 1 deletion kombu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__version__ = ".".join(map(str, VERSION[0:3])) + "".join(VERSION[3:])
__author__ = "Ask Solem"
__contact__ = "[email protected]"
__homepage__ = "http://github.com/ask/kombu/"
__homepage__ = "http://kombu.readthedocs.org"
__docformat__ = "restructuredtext en"

# -eof meta-
Expand Down

0 comments on commit ab43b94

Please sign in to comment.