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
# 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`. All the functionality of this package is now integrated into the official Python client and the `elasticsearch-dsl` package is now deprecated. All users are recommended 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
+
from elasticsearch import dsl
22
+
# to:
23
+
from elasticsearch import dsl as elasticsearch_dsl
24
+
25
+
# from:
26
+
import elasticsearch_dsl
27
+
# to:
28
+
from elasticsearch import dsl
29
+
# and replace all references to elasticsearch_dsl with dsl in code
0 commit comments