├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── docs ├── aggregates.rst ├── client.rst ├── conf.py ├── index.rst ├── queries.rst └── suggesters.rst ├── elasticquery ├── __init__.py ├── aggregates.py ├── dsl.py ├── dsl_util.py ├── elasticquery.py ├── exceptions.py ├── queries.py └── suggesters.py ├── requirements.pip ├── scripts ├── build_docs.py └── release.sh ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── aggregates ├── avg.json ├── avg_bucket.json ├── bucket_script.json ├── bucket_selector.json ├── cardinality.json ├── children.json ├── cumulative_sum.json ├── date_histogram.json ├── date_range.json ├── derivative.json ├── extended_stats.json ├── extended_stats_bucket.json ├── filter.json ├── filters.json ├── geo_bounds.json ├── geo_distance.json ├── geohash_grid.json ├── global.json ├── histogram.json ├── ip_range.json ├── max.json ├── max_bucket.json ├── min.json ├── min_bucket.json ├── missing.json ├── moving_avg.json ├── nested.json ├── percentile_ranks.json ├── percentiles.json ├── percentiles_bucket.json ├── range.json ├── reverse_nested.json ├── scripted_metric.json ├── serial_diff.json ├── significant_terms.json ├── stats.json ├── stats_bucket.json ├── sum.json ├── terms.json ├── top_hits.json └── value_count.json ├── queries ├── bool.json ├── boosting.json ├── common.json ├── constant_score.json ├── dis_max.json ├── exists.json ├── function_score.json ├── fuzzy.json ├── geo_bounding_box.json ├── geo_distance.json ├── geo_distance_range.json ├── geo_polygon.json ├── geo_shape.json ├── geohash_cell.json ├── has_child.json ├── has_parent.json ├── ids.json ├── indices.json ├── limit.json ├── match.json ├── match_all.json ├── missing.json ├── more_like_this.json ├── multi_match.json ├── nested.json ├── prefix.json ├── query_string.json ├── range.json ├── regexp.json ├── simple_query_string.json ├── span_first.json ├── span_multi.json ├── span_near.json ├── span_not.json ├── span_or.json ├── span_term.json ├── term.json ├── terms.json ├── type.json └── wildcard.json ├── suggesters ├── completion.json ├── phrase.json └── term.json ├── test_api.py ├── test_dsl.py └── util.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Standard 2 | .DS_Store 3 | 4 | # Python 5 | *.pyc 6 | ElasticQuery.egg-info/ 7 | dist/ 8 | 9 | docs/build/ 10 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/README.md -------------------------------------------------------------------------------- /docs/aggregates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/aggregates.rst -------------------------------------------------------------------------------- /docs/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/client.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/queries.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/queries.rst -------------------------------------------------------------------------------- /docs/suggesters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/docs/suggesters.rst -------------------------------------------------------------------------------- /elasticquery/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/__init__.py -------------------------------------------------------------------------------- /elasticquery/aggregates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/aggregates.py -------------------------------------------------------------------------------- /elasticquery/dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/dsl.py -------------------------------------------------------------------------------- /elasticquery/dsl_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/dsl_util.py -------------------------------------------------------------------------------- /elasticquery/elasticquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/elasticquery.py -------------------------------------------------------------------------------- /elasticquery/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/exceptions.py -------------------------------------------------------------------------------- /elasticquery/queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/queries.py -------------------------------------------------------------------------------- /elasticquery/suggesters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/elasticquery/suggesters.py -------------------------------------------------------------------------------- /requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/requirements.pip -------------------------------------------------------------------------------- /scripts/build_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/scripts/build_docs.py -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/aggregates/avg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/avg.json -------------------------------------------------------------------------------- /tests/aggregates/avg_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/avg_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/bucket_script.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/bucket_script.json -------------------------------------------------------------------------------- /tests/aggregates/bucket_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/bucket_selector.json -------------------------------------------------------------------------------- /tests/aggregates/cardinality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/cardinality.json -------------------------------------------------------------------------------- /tests/aggregates/children.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/children.json -------------------------------------------------------------------------------- /tests/aggregates/cumulative_sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/cumulative_sum.json -------------------------------------------------------------------------------- /tests/aggregates/date_histogram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/date_histogram.json -------------------------------------------------------------------------------- /tests/aggregates/date_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/date_range.json -------------------------------------------------------------------------------- /tests/aggregates/derivative.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/derivative.json -------------------------------------------------------------------------------- /tests/aggregates/extended_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/extended_stats.json -------------------------------------------------------------------------------- /tests/aggregates/extended_stats_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/extended_stats_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/filter.json -------------------------------------------------------------------------------- /tests/aggregates/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/filters.json -------------------------------------------------------------------------------- /tests/aggregates/geo_bounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/geo_bounds.json -------------------------------------------------------------------------------- /tests/aggregates/geo_distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/geo_distance.json -------------------------------------------------------------------------------- /tests/aggregates/geohash_grid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/geohash_grid.json -------------------------------------------------------------------------------- /tests/aggregates/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/global.json -------------------------------------------------------------------------------- /tests/aggregates/histogram.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/histogram.json -------------------------------------------------------------------------------- /tests/aggregates/ip_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/ip_range.json -------------------------------------------------------------------------------- /tests/aggregates/max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/max.json -------------------------------------------------------------------------------- /tests/aggregates/max_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/max_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/min.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/min.json -------------------------------------------------------------------------------- /tests/aggregates/min_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/min_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/missing.json -------------------------------------------------------------------------------- /tests/aggregates/moving_avg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/moving_avg.json -------------------------------------------------------------------------------- /tests/aggregates/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/nested.json -------------------------------------------------------------------------------- /tests/aggregates/percentile_ranks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/percentile_ranks.json -------------------------------------------------------------------------------- /tests/aggregates/percentiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/percentiles.json -------------------------------------------------------------------------------- /tests/aggregates/percentiles_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/percentiles_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/range.json -------------------------------------------------------------------------------- /tests/aggregates/reverse_nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/reverse_nested.json -------------------------------------------------------------------------------- /tests/aggregates/scripted_metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/scripted_metric.json -------------------------------------------------------------------------------- /tests/aggregates/serial_diff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/serial_diff.json -------------------------------------------------------------------------------- /tests/aggregates/significant_terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/significant_terms.json -------------------------------------------------------------------------------- /tests/aggregates/stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/stats.json -------------------------------------------------------------------------------- /tests/aggregates/stats_bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/stats_bucket.json -------------------------------------------------------------------------------- /tests/aggregates/sum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/sum.json -------------------------------------------------------------------------------- /tests/aggregates/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/terms.json -------------------------------------------------------------------------------- /tests/aggregates/top_hits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/top_hits.json -------------------------------------------------------------------------------- /tests/aggregates/value_count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/aggregates/value_count.json -------------------------------------------------------------------------------- /tests/queries/bool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/bool.json -------------------------------------------------------------------------------- /tests/queries/boosting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/boosting.json -------------------------------------------------------------------------------- /tests/queries/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/common.json -------------------------------------------------------------------------------- /tests/queries/constant_score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/constant_score.json -------------------------------------------------------------------------------- /tests/queries/dis_max.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/dis_max.json -------------------------------------------------------------------------------- /tests/queries/exists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/exists.json -------------------------------------------------------------------------------- /tests/queries/function_score.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/function_score.json -------------------------------------------------------------------------------- /tests/queries/fuzzy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/fuzzy.json -------------------------------------------------------------------------------- /tests/queries/geo_bounding_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geo_bounding_box.json -------------------------------------------------------------------------------- /tests/queries/geo_distance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geo_distance.json -------------------------------------------------------------------------------- /tests/queries/geo_distance_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geo_distance_range.json -------------------------------------------------------------------------------- /tests/queries/geo_polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geo_polygon.json -------------------------------------------------------------------------------- /tests/queries/geo_shape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geo_shape.json -------------------------------------------------------------------------------- /tests/queries/geohash_cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/geohash_cell.json -------------------------------------------------------------------------------- /tests/queries/has_child.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/has_child.json -------------------------------------------------------------------------------- /tests/queries/has_parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/has_parent.json -------------------------------------------------------------------------------- /tests/queries/ids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/ids.json -------------------------------------------------------------------------------- /tests/queries/indices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/indices.json -------------------------------------------------------------------------------- /tests/queries/limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/limit.json -------------------------------------------------------------------------------- /tests/queries/match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/match.json -------------------------------------------------------------------------------- /tests/queries/match_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/match_all.json -------------------------------------------------------------------------------- /tests/queries/missing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/missing.json -------------------------------------------------------------------------------- /tests/queries/more_like_this.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/more_like_this.json -------------------------------------------------------------------------------- /tests/queries/multi_match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/multi_match.json -------------------------------------------------------------------------------- /tests/queries/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/nested.json -------------------------------------------------------------------------------- /tests/queries/prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/prefix.json -------------------------------------------------------------------------------- /tests/queries/query_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/query_string.json -------------------------------------------------------------------------------- /tests/queries/range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/range.json -------------------------------------------------------------------------------- /tests/queries/regexp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/regexp.json -------------------------------------------------------------------------------- /tests/queries/simple_query_string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/simple_query_string.json -------------------------------------------------------------------------------- /tests/queries/span_first.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_first.json -------------------------------------------------------------------------------- /tests/queries/span_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_multi.json -------------------------------------------------------------------------------- /tests/queries/span_near.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_near.json -------------------------------------------------------------------------------- /tests/queries/span_not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_not.json -------------------------------------------------------------------------------- /tests/queries/span_or.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_or.json -------------------------------------------------------------------------------- /tests/queries/span_term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/span_term.json -------------------------------------------------------------------------------- /tests/queries/term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/term.json -------------------------------------------------------------------------------- /tests/queries/terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/terms.json -------------------------------------------------------------------------------- /tests/queries/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/type.json -------------------------------------------------------------------------------- /tests/queries/wildcard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/queries/wildcard.json -------------------------------------------------------------------------------- /tests/suggesters/completion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/suggesters/completion.json -------------------------------------------------------------------------------- /tests/suggesters/phrase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/suggesters/phrase.json -------------------------------------------------------------------------------- /tests/suggesters/term.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/suggesters/term.json -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_dsl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/test_dsl.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fizzadar/ElasticQuery/HEAD/tests/util.py --------------------------------------------------------------------------------