From efc1156bd556224aa39308bfd49e2b24cdb62eb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Honza=20Kr=C3=A1l?= Date: Thu, 19 Nov 2015 11:10:07 -0600 Subject: [PATCH] add description of the basic params for Urllib3HttpConnection --- elasticsearch/connection/http_urllib3.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/elasticsearch/connection/http_urllib3.py b/elasticsearch/connection/http_urllib3.py index 47e422e7..310b7ebc 100644 --- a/elasticsearch/connection/http_urllib3.py +++ b/elasticsearch/connection/http_urllib3.py @@ -11,6 +11,10 @@ class Urllib3HttpConnection(Connection): """ Default connection class using the `urllib3` library and the http protocol. + :arg host: hostname of the node (default: localhost) + :arg port: port to use (integer, default: 9200) + :arg url_prefix: optional url prefix for elasticsearch + :arg timeout: default timeout in seconds (float, default: 10) :arg http_auth: optional http auth information as either ':' separated string or a tuple :arg use_ssl: use ssl for the connection if `True`