├── .editorconfig ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── api.rst ├── authors.rst ├── backends │ ├── index.rst │ └── python.rst ├── caching │ └── index.rst ├── conf.py ├── contrib │ ├── django.rst │ └── index.rst ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── lifter.rst ├── make.bat ├── modules.rst ├── overview.rst ├── performance.rst ├── query.rst ├── quickstart.rst ├── readme.rst ├── requirements.txt └── server.py ├── example ├── __init__.py ├── apache.py └── fake-logs.py ├── lifter ├── __init__.py ├── adapters.py ├── aggregates.py ├── backends │ ├── __init__.py │ ├── base.py │ ├── document.py │ ├── elasticsearch.py │ ├── http.py │ └── python.py ├── caches.py ├── contrib │ └── django │ │ ├── __init__.py │ │ ├── apps.py │ │ └── monkey_patch.py ├── exceptions.py ├── fields.py ├── lookups.py ├── managers.py ├── models.py ├── parsers.py ├── query.py ├── store.py └── utils.py ├── pytest.ini ├── requirements_dev.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── benchmarks │ ├── __init__.py │ ├── __main__.py │ ├── big_fake_data.py │ └── utils.py ├── contrib │ └── django │ │ └── tests.py ├── data │ ├── bucket.xml │ ├── db.json │ ├── elasticsearch │ │ ├── all.json │ │ ├── count.json │ │ ├── setup_docker │ │ └── values.json │ ├── log.sample │ └── musicbrainz_release_search.xml ├── fake_data.py ├── mixins.py ├── test_adapters.py ├── test_cache.py ├── test_document_backend.py ├── test_elasticsearch_backend.py ├── test_explicit_query_engine.py ├── test_keyword_engine.py ├── test_meta.py ├── test_parsers.py ├── test_python_backend.py ├── test_query.py └── test_rest_backend.py ├── tox.ini └── travis_pypi_setup.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/backends/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/backends/index.rst -------------------------------------------------------------------------------- /docs/backends/python.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/backends/python.rst -------------------------------------------------------------------------------- /docs/caching/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/caching/index.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contrib/django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/contrib/django.rst -------------------------------------------------------------------------------- /docs/contrib/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/contrib/index.rst -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/lifter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/lifter.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/query.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/docs/server.py -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/apache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/example/apache.py -------------------------------------------------------------------------------- /example/fake-logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/example/fake-logs.py -------------------------------------------------------------------------------- /lifter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/__init__.py -------------------------------------------------------------------------------- /lifter/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/adapters.py -------------------------------------------------------------------------------- /lifter/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/aggregates.py -------------------------------------------------------------------------------- /lifter/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lifter/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/backends/base.py -------------------------------------------------------------------------------- /lifter/backends/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/backends/document.py -------------------------------------------------------------------------------- /lifter/backends/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/backends/elasticsearch.py -------------------------------------------------------------------------------- /lifter/backends/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/backends/http.py -------------------------------------------------------------------------------- /lifter/backends/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/backends/python.py -------------------------------------------------------------------------------- /lifter/caches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/caches.py -------------------------------------------------------------------------------- /lifter/contrib/django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/contrib/django/__init__.py -------------------------------------------------------------------------------- /lifter/contrib/django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/contrib/django/apps.py -------------------------------------------------------------------------------- /lifter/contrib/django/monkey_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/contrib/django/monkey_patch.py -------------------------------------------------------------------------------- /lifter/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/exceptions.py -------------------------------------------------------------------------------- /lifter/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/fields.py -------------------------------------------------------------------------------- /lifter/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/lookups.py -------------------------------------------------------------------------------- /lifter/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/managers.py -------------------------------------------------------------------------------- /lifter/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/models.py -------------------------------------------------------------------------------- /lifter/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/parsers.py -------------------------------------------------------------------------------- /lifter/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/query.py -------------------------------------------------------------------------------- /lifter/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/store.py -------------------------------------------------------------------------------- /lifter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/lifter/utils.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --fulltrace 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/benchmarks/__init__.py -------------------------------------------------------------------------------- /tests/benchmarks/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/benchmarks/__main__.py -------------------------------------------------------------------------------- /tests/benchmarks/big_fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/benchmarks/big_fake_data.py -------------------------------------------------------------------------------- /tests/benchmarks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/benchmarks/utils.py -------------------------------------------------------------------------------- /tests/contrib/django/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/contrib/django/tests.py -------------------------------------------------------------------------------- /tests/data/bucket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/bucket.xml -------------------------------------------------------------------------------- /tests/data/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/db.json -------------------------------------------------------------------------------- /tests/data/elasticsearch/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/elasticsearch/all.json -------------------------------------------------------------------------------- /tests/data/elasticsearch/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/elasticsearch/count.json -------------------------------------------------------------------------------- /tests/data/elasticsearch/setup_docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/elasticsearch/setup_docker -------------------------------------------------------------------------------- /tests/data/elasticsearch/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/elasticsearch/values.json -------------------------------------------------------------------------------- /tests/data/log.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/log.sample -------------------------------------------------------------------------------- /tests/data/musicbrainz_release_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/data/musicbrainz_release_search.xml -------------------------------------------------------------------------------- /tests/fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/fake_data.py -------------------------------------------------------------------------------- /tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/mixins.py -------------------------------------------------------------------------------- /tests/test_adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_adapters.py -------------------------------------------------------------------------------- /tests/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_cache.py -------------------------------------------------------------------------------- /tests/test_document_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_document_backend.py -------------------------------------------------------------------------------- /tests/test_elasticsearch_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_elasticsearch_backend.py -------------------------------------------------------------------------------- /tests/test_explicit_query_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_explicit_query_engine.py -------------------------------------------------------------------------------- /tests/test_keyword_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_keyword_engine.py -------------------------------------------------------------------------------- /tests/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_meta.py -------------------------------------------------------------------------------- /tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_parsers.py -------------------------------------------------------------------------------- /tests/test_python_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_python_backend.py -------------------------------------------------------------------------------- /tests/test_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_query.py -------------------------------------------------------------------------------- /tests/test_rest_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tests/test_rest_backend.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agateblue/lifter/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------