├── .gitignore ├── .travis.yml ├── AUTHORS.txt ├── CHANGELOG ├── LICENSE.txt ├── README.rst ├── django_kaneda ├── __init__.py └── settings.py ├── docs ├── Makefile ├── backends.rst ├── changelog.rst ├── conf.py ├── django.rst ├── index.rst ├── metrics.rst ├── queues.rst ├── settings.rst └── usage.rst ├── kaneda ├── __init__.py ├── backends │ ├── __init__.py │ ├── base.py │ ├── elasticsearch.py │ ├── influxdb.py │ ├── logger.py │ ├── mongodb.py │ └── rethink.py ├── base.py ├── exceptions.py ├── queues │ ├── __init__.py │ ├── base.py │ ├── celery.py │ ├── rq.py │ └── zmq.py ├── tasks │ ├── __init__.py │ ├── celery.py │ ├── rq.py │ └── zmq.py └── utils.py ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── integration │ ├── __init__.py │ ├── benchmarks │ │ ├── __init__.py │ │ ├── test_backends.py │ │ └── test_queues.py │ ├── conftest.py │ ├── django │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── test_django.py │ ├── test_backends.py │ ├── test_metrics.py │ └── test_queues.py └── unit │ ├── __init__.py │ ├── conftest.py │ ├── test_backends.py │ ├── test_metrics.py │ └── test_utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Marc Tudurí 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/README.rst -------------------------------------------------------------------------------- /django_kaneda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/django_kaneda/__init__.py -------------------------------------------------------------------------------- /django_kaneda/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/django_kaneda/settings.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/backends.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/backends.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/django.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/metrics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/metrics.rst -------------------------------------------------------------------------------- /docs/queues.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/queues.rst -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /kaneda/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/__init__.py -------------------------------------------------------------------------------- /kaneda/backends/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/__init__.py -------------------------------------------------------------------------------- /kaneda/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/base.py -------------------------------------------------------------------------------- /kaneda/backends/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/elasticsearch.py -------------------------------------------------------------------------------- /kaneda/backends/influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/influxdb.py -------------------------------------------------------------------------------- /kaneda/backends/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/logger.py -------------------------------------------------------------------------------- /kaneda/backends/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/mongodb.py -------------------------------------------------------------------------------- /kaneda/backends/rethink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/backends/rethink.py -------------------------------------------------------------------------------- /kaneda/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/base.py -------------------------------------------------------------------------------- /kaneda/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/exceptions.py -------------------------------------------------------------------------------- /kaneda/queues/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/queues/__init__.py -------------------------------------------------------------------------------- /kaneda/queues/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/queues/base.py -------------------------------------------------------------------------------- /kaneda/queues/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/queues/celery.py -------------------------------------------------------------------------------- /kaneda/queues/rq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/queues/rq.py -------------------------------------------------------------------------------- /kaneda/queues/zmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/queues/zmq.py -------------------------------------------------------------------------------- /kaneda/tasks/__init__.py: -------------------------------------------------------------------------------- 1 | from .zmq import zmq_task # NOQA 2 | -------------------------------------------------------------------------------- /kaneda/tasks/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/tasks/celery.py -------------------------------------------------------------------------------- /kaneda/tasks/rq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/tasks/rq.py -------------------------------------------------------------------------------- /kaneda/tasks/zmq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/tasks/zmq.py -------------------------------------------------------------------------------- /kaneda/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/kaneda/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/benchmarks/__init__.py -------------------------------------------------------------------------------- /tests/integration/benchmarks/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/benchmarks/test_backends.py -------------------------------------------------------------------------------- /tests/integration/benchmarks/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/benchmarks/test_queues.py -------------------------------------------------------------------------------- /tests/integration/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/conftest.py -------------------------------------------------------------------------------- /tests/integration/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/integration/django/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/django/conftest.py -------------------------------------------------------------------------------- /tests/integration/django/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/django/test_django.py -------------------------------------------------------------------------------- /tests/integration/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/test_backends.py -------------------------------------------------------------------------------- /tests/integration/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/test_metrics.py -------------------------------------------------------------------------------- /tests/integration/test_queues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/integration/test_queues.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/unit/conftest.py -------------------------------------------------------------------------------- /tests/unit/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/unit/test_backends.py -------------------------------------------------------------------------------- /tests/unit/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/unit/test_metrics.py -------------------------------------------------------------------------------- /tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tests/unit/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/APSL/kaneda/HEAD/tox.ini --------------------------------------------------------------------------------