Skip to content

Commit 3fc2a17

Browse files
MHHukiewitzhoh
authored andcommitted
refactor client.py into own module; rename pagination to page_size where possible
1 parent f0338e5 commit 3fc2a17

File tree

11 files changed

+575
-564
lines changed

11 files changed

+575
-564
lines changed

src/aleph/sdk/client/__init__.py

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
from .authenticated import AuthenticatedAlephClient, AuthenticatedUserSessionSync
2+
from .base import BaseAlephClient, BaseAuthenticatedAlephClient
3+
from .client import AlephClient, UserSessionSync
4+
5+
__all__ = [
6+
"BaseAlephClient",
7+
"BaseAuthenticatedAlephClient",
8+
"AlephClient",
9+
"AuthenticatedAlephClient",
10+
"UserSessionSync",
11+
"AuthenticatedUserSessionSync",
12+
]

0 commit comments

Comments
 (0)