├── .coveragerc ├── .gitignore ├── .travis.yml ├── API_REFERENCE.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── development.txt ├── pre-commit ├── pyeqs ├── __init__.py ├── bool.py ├── dsl │ ├── __init__.py │ ├── aggregations.py │ ├── exists.py │ ├── geo.py │ ├── match_all.py │ ├── missing.py │ ├── query_string.py │ ├── range.py │ ├── script_score.py │ ├── sort.py │ ├── term.py │ ├── terms.py │ └── type.py ├── filter.py ├── query_builder.py └── queryset.py ├── requirements.txt ├── setup.py ├── tests ├── __init__.py ├── functional │ ├── __init__.py │ ├── test_aggregations.py │ ├── test_bool.py │ ├── test_connection.py │ ├── test_exists.py │ ├── test_filters.py │ ├── test_geo_distance.py │ ├── test_match_all.py │ ├── test_missing.py │ ├── test_query_string.py │ ├── test_queryset.py │ ├── test_range.py │ ├── test_score.py │ ├── test_sorting.py │ ├── test_terms.py │ └── test_type.py ├── helpers.py └── unit │ ├── __init__.py │ ├── test_aggregation.py │ ├── test_bool.py │ ├── test_connection.py │ ├── test_copy.py │ ├── test_exists.py │ ├── test_filter.py │ ├── test_geo_distance.py │ ├── test_match_all.py │ ├── test_missing.py │ ├── test_query_string.py │ ├── test_queryset.py │ ├── test_range.py │ ├── test_score.py │ ├── test_sort.py │ ├── test_term.py │ ├── test_terms.py │ └── test_type.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/.travis.yml -------------------------------------------------------------------------------- /API_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/API_REFERENCE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/README.md -------------------------------------------------------------------------------- /development.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/development.txt -------------------------------------------------------------------------------- /pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pre-commit -------------------------------------------------------------------------------- /pyeqs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/__init__.py -------------------------------------------------------------------------------- /pyeqs/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/bool.py -------------------------------------------------------------------------------- /pyeqs/dsl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/__init__.py -------------------------------------------------------------------------------- /pyeqs/dsl/aggregations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/aggregations.py -------------------------------------------------------------------------------- /pyeqs/dsl/exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/exists.py -------------------------------------------------------------------------------- /pyeqs/dsl/geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/geo.py -------------------------------------------------------------------------------- /pyeqs/dsl/match_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/match_all.py -------------------------------------------------------------------------------- /pyeqs/dsl/missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/missing.py -------------------------------------------------------------------------------- /pyeqs/dsl/query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/query_string.py -------------------------------------------------------------------------------- /pyeqs/dsl/range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/range.py -------------------------------------------------------------------------------- /pyeqs/dsl/script_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/script_score.py -------------------------------------------------------------------------------- /pyeqs/dsl/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/sort.py -------------------------------------------------------------------------------- /pyeqs/dsl/term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/term.py -------------------------------------------------------------------------------- /pyeqs/dsl/terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/terms.py -------------------------------------------------------------------------------- /pyeqs/dsl/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/dsl/type.py -------------------------------------------------------------------------------- /pyeqs/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/filter.py -------------------------------------------------------------------------------- /pyeqs/query_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/query_builder.py -------------------------------------------------------------------------------- /pyeqs/queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/pyeqs/queryset.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/__init__.py -------------------------------------------------------------------------------- /tests/functional/test_aggregations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_aggregations.py -------------------------------------------------------------------------------- /tests/functional/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_bool.py -------------------------------------------------------------------------------- /tests/functional/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_connection.py -------------------------------------------------------------------------------- /tests/functional/test_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_exists.py -------------------------------------------------------------------------------- /tests/functional/test_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_filters.py -------------------------------------------------------------------------------- /tests/functional/test_geo_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_geo_distance.py -------------------------------------------------------------------------------- /tests/functional/test_match_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_match_all.py -------------------------------------------------------------------------------- /tests/functional/test_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_missing.py -------------------------------------------------------------------------------- /tests/functional/test_query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_query_string.py -------------------------------------------------------------------------------- /tests/functional/test_queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_queryset.py -------------------------------------------------------------------------------- /tests/functional/test_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_range.py -------------------------------------------------------------------------------- /tests/functional/test_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_score.py -------------------------------------------------------------------------------- /tests/functional/test_sorting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_sorting.py -------------------------------------------------------------------------------- /tests/functional/test_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_terms.py -------------------------------------------------------------------------------- /tests/functional/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/functional/test_type.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/test_aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_aggregation.py -------------------------------------------------------------------------------- /tests/unit/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_bool.py -------------------------------------------------------------------------------- /tests/unit/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_connection.py -------------------------------------------------------------------------------- /tests/unit/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_copy.py -------------------------------------------------------------------------------- /tests/unit/test_exists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_exists.py -------------------------------------------------------------------------------- /tests/unit/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_filter.py -------------------------------------------------------------------------------- /tests/unit/test_geo_distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_geo_distance.py -------------------------------------------------------------------------------- /tests/unit/test_match_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_match_all.py -------------------------------------------------------------------------------- /tests/unit/test_missing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_missing.py -------------------------------------------------------------------------------- /tests/unit/test_query_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_query_string.py -------------------------------------------------------------------------------- /tests/unit/test_queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_queryset.py -------------------------------------------------------------------------------- /tests/unit/test_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_range.py -------------------------------------------------------------------------------- /tests/unit/test_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_score.py -------------------------------------------------------------------------------- /tests/unit/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_sort.py -------------------------------------------------------------------------------- /tests/unit/test_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_term.py -------------------------------------------------------------------------------- /tests/unit/test_terms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_terms.py -------------------------------------------------------------------------------- /tests/unit/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tests/unit/test_type.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yipit/pyeqs/HEAD/tox.ini --------------------------------------------------------------------------------