lsrestclient 1.7.0__tar.gz → 1.7.1__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/PKG-INFO +1 -1
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/client.py +3 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/pyproject.toml +1 -1
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/README.md +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/__init__.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/auth.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/contexts/__init__.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/contexts/bearer_token.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/exceptions.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/fixtures.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/mock.py +0 -0
- {lsrestclient-1.7.0 → lsrestclient-1.7.1}/lsrestclient/response.py +0 -0
@@ -56,6 +56,9 @@ class LsRestClient(Session):
|
|
56
56
|
except KeyError:
|
57
57
|
raise Exception(f"LsRestClient with name '{name}' not initialized.")
|
58
58
|
|
59
|
+
def __repr__(self):
|
60
|
+
return f"<LsRestClient name:'{self.name}' base_url:'{self.base_url}'>"
|
61
|
+
|
59
62
|
def __init__(
|
60
63
|
self,
|
61
64
|
base_url: str = None,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|