2020-04-23 11:22:08 -05:00
|
|
|
# Licensed to Elasticsearch B.V under one or more agreements.
|
|
|
|
|
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
|
|
|
# See the LICENSE file in the project root for more information
|
|
|
|
|
|
2013-08-25 16:39:56 +02:00
|
|
|
from .base import Connection
|
2013-10-04 15:47:56 +02:00
|
|
|
from .http_requests import RequestsHttpConnection
|
2017-12-28 13:09:16 -07:00
|
|
|
from .http_urllib3 import Urllib3HttpConnection, create_ssl_context
|
2020-03-04 13:07:07 -06:00
|
|
|
|
|
|
|
|
__all__ = [
|
|
|
|
|
"Connection",
|
|
|
|
|
"RequestsHttpConnection",
|
|
|
|
|
"Urllib3HttpConnection",
|
|
|
|
|
"create_ssl_context",
|
|
|
|
|
]
|