You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use class-based queries and type-hinted documents in DSL documentation examples (#2857) (#2862)
* Use class-based queries and type-hinted documents in DSL documentation examples
* DSL migrating section
(cherry picked from commit d492524)
Co-authored-by: Miguel Grinberg <[email protected]>
# Migrating from the `elasticsearch-dsl` package [_migrating_from_elasticsearch_dsl_package]
2
+
3
+
In the past the Elasticsearch Python DSL module was distributed as a standalone package called `elasticsearch-dsl`. This package is now deprecated, since all its functionality has been integrated into the main Python client. We recommend all developers to migrate their applications and eliminate their dependency on the `elasticsearch-dsl` package.
4
+
5
+
To migrate your application, all references to `elasticsearch_dsl` as a top-level package must be changed to `elasticsearch.dsl`. In other words, the underscore from the package name should be replaced by a period.
6
+
7
+
Here are a few examples:
8
+
9
+
```python
10
+
# from:
11
+
from elasticsearch_dsl import Date, Document, InnerDoc, Text, connections
12
+
# to:
13
+
from elasticsearch.dsl import Date, Document, InnerDoc, Text, connections
14
+
15
+
# from:
16
+
from elasticsearch_dsl.query import MultiMatch
17
+
# to:
18
+
from elasticsearch.dsl.query import MultiMatch
19
+
20
+
# from:
21
+
import elasticsearch_dsl as dsl
22
+
# to:
23
+
from elasticsearch import dsl
24
+
25
+
# from:
26
+
import elasticsearch_dsl
27
+
# to:
28
+
from elasticsearch import dsl as elasticsearch_dsl
29
+
30
+
# from:
31
+
import elasticsearch_dsl
32
+
# to:
33
+
from elasticsearch import dsl
34
+
# and replace all references to "elasticsearch_dsl" in the code with "dsl"
0 commit comments