Skip to content

Commit

Permalink
Update documentation of Service constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Feb 14, 2024
1 parent 7322160 commit 499c0a3
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions exasol/bucketfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,16 @@ def __init__(
"""Create a new Service instance.
Args:
url: of the bucketfs service, e.g. `http(s)://127.0.0.1:2580`.
credentials: a mapping containing credentials (username and password) for buckets.
url:
Url of the bucketfs service, e.g. `http(s)://127.0.0.1:2580`.
credentials:
A mapping containing credentials (username and password) for buckets.
E.g. {"bucket1": { "username": "foo", "password": "bar" }}
verify:
Either a boolean, in which case it controls whether we verify
the server's TLS certificate, or a string, in which case it must be a path
to a CA bundle to use. Defaults to ``True``.
"""
self._url = _parse_service_url(url)
self._authenticator = defaultdict(
Expand Down

0 comments on commit 499c0a3

Please sign in to comment.