Metadata-Version: 1.0
Name: kombu-sqlalchemy
Version: 1.1.0
Summary: Kombu transport using SQLAlchemy as the message store.
Home-page: http://github.com/ask/kombu-sqlalchemy/
Author: Ask Solem
Author-email: ask@celeryproject.org
License: BSD
Description: ===================================================
        kombu-sqlalchemy - Kombu transport using SQLAlchemy
        ===================================================
        
        :version: 1.1.0
        
        Introduction
        ============
        
        This package enables you to use SQLAlchemy as the message store
        for `Kombu`_.
        
        
        ``kombu-sqlalchemy`` contains a single transport,
        ``sqlakombu.transport.Transport``, which is used like this::
        
        >>> from kombu.connection import BrokerConnection
        >>> c = BrokerConnection(DB_URL, transport="sqlakombu.transport.Transport")
        
        ``DB_URL`` should be a valid SQLAlchemy database connection url in the form::
        
        "dialect+driver://username:password@host:port/database"
        
        
        .. _`Kombu`: http://pypi.python.org/pypi/kombu
        
        Installation
        ============
        
        You can install ``kombu-sqlalchemy`` either via the Python Package Index (PyPI)
        or from source.
        
        To install using ``pip``,::
        
        $ pip install kombu-sqlalchemy
        
        
        To install using ``easy_install``,::
        
        $ easy_install kombu-sqlalchemy
        
        
        If you have downloaded a source tarball you can install it
        by doing the following,::
        
        $ python setup.py build
        # python setup.py install # as root
        
        License
        =======
        
        This software is licensed under the ``New BSD License``. See the ``LICENSE``
        file in the top distribution directory for the full license text.
        
        .. # vim: syntax=rst expandtab tabstop=4 shiftwidth=4 shiftround
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
