├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENCE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── conf.py ├── configuration.rst ├── expression.rst ├── index.rst ├── indexes.rst └── queryset.rst ├── requirements.txt ├── setup.py ├── sphinxql ├── __init__.py ├── apps.py ├── configuration │ ├── __init__.py │ ├── configurations.py │ ├── configurators.py │ ├── connection.py │ └── constants.py ├── core │ ├── __init__.py │ ├── base.py │ ├── columns.py │ ├── lookups.py │ └── query.py ├── exceptions.py ├── fields.py ├── indexes.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── index_sphinx.py │ │ ├── start_sphinx.py │ │ └── stop_sphinx.py ├── manager.py ├── query.py ├── sql.py └── types.py └── tests ├── __init__.py ├── foreign_relationships ├── __init__.py ├── indexes.py ├── models.py └── tests.py ├── indexing ├── __init__.py ├── indexes.py ├── models.py └── tests.py ├── query ├── __init__.py ├── indexes.py ├── models.py └── tests.py ├── queryset ├── __init__.py ├── indexes.py ├── models.py ├── test_search.py └── tests.py ├── settings_test.py ├── settings_travis.py ├── test_configurators.py ├── test_expressions.py ├── test_statements.py └── test_types.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/LICENCE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/expression.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/expression.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/indexes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/indexes.rst -------------------------------------------------------------------------------- /docs/queryset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/docs/queryset.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.8 2 | pymysql 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/setup.py -------------------------------------------------------------------------------- /sphinxql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/__init__.py -------------------------------------------------------------------------------- /sphinxql/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/apps.py -------------------------------------------------------------------------------- /sphinxql/configuration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/configuration/__init__.py -------------------------------------------------------------------------------- /sphinxql/configuration/configurations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/configuration/configurations.py -------------------------------------------------------------------------------- /sphinxql/configuration/configurators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/configuration/configurators.py -------------------------------------------------------------------------------- /sphinxql/configuration/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/configuration/connection.py -------------------------------------------------------------------------------- /sphinxql/configuration/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/configuration/constants.py -------------------------------------------------------------------------------- /sphinxql/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinxql/core/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/core/base.py -------------------------------------------------------------------------------- /sphinxql/core/columns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/core/columns.py -------------------------------------------------------------------------------- /sphinxql/core/lookups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/core/lookups.py -------------------------------------------------------------------------------- /sphinxql/core/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/core/query.py -------------------------------------------------------------------------------- /sphinxql/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/exceptions.py -------------------------------------------------------------------------------- /sphinxql/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/fields.py -------------------------------------------------------------------------------- /sphinxql/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/indexes.py -------------------------------------------------------------------------------- /sphinxql/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinxql/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sphinxql/management/commands/index_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/management/commands/index_sphinx.py -------------------------------------------------------------------------------- /sphinxql/management/commands/start_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/management/commands/start_sphinx.py -------------------------------------------------------------------------------- /sphinxql/management/commands/stop_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/management/commands/stop_sphinx.py -------------------------------------------------------------------------------- /sphinxql/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/manager.py -------------------------------------------------------------------------------- /sphinxql/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/query.py -------------------------------------------------------------------------------- /sphinxql/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/sql.py -------------------------------------------------------------------------------- /sphinxql/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/sphinxql/types.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/foreign_relationships/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/foreign_relationships/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/foreign_relationships/indexes.py -------------------------------------------------------------------------------- /tests/foreign_relationships/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/foreign_relationships/models.py -------------------------------------------------------------------------------- /tests/foreign_relationships/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/foreign_relationships/tests.py -------------------------------------------------------------------------------- /tests/indexing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/indexing/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/indexing/indexes.py -------------------------------------------------------------------------------- /tests/indexing/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/indexing/models.py -------------------------------------------------------------------------------- /tests/indexing/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/indexing/tests.py -------------------------------------------------------------------------------- /tests/query/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/query/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/query/indexes.py -------------------------------------------------------------------------------- /tests/query/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/query/models.py -------------------------------------------------------------------------------- /tests/query/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/query/tests.py -------------------------------------------------------------------------------- /tests/queryset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/queryset/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/queryset/indexes.py -------------------------------------------------------------------------------- /tests/queryset/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/queryset/models.py -------------------------------------------------------------------------------- /tests/queryset/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/queryset/test_search.py -------------------------------------------------------------------------------- /tests/queryset/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/queryset/tests.py -------------------------------------------------------------------------------- /tests/settings_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/settings_test.py -------------------------------------------------------------------------------- /tests/settings_travis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/settings_travis.py -------------------------------------------------------------------------------- /tests/test_configurators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/test_configurators.py -------------------------------------------------------------------------------- /tests/test_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/test_expressions.py -------------------------------------------------------------------------------- /tests/test_statements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/test_statements.py -------------------------------------------------------------------------------- /tests/test_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jorgecarleitao/django-sphinxql/HEAD/tests/test_types.py --------------------------------------------------------------------------------