Skip to content

Commit 3e05837

Browse files
committed
Refactor and make names more descriptive
1 parent facaa53 commit 3e05837

File tree

5 files changed

+101
-100
lines changed

5 files changed

+101
-100
lines changed

loading_api_wrapper/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

loading_sdk/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from loading_sdk.api import LoadingApiClient
2+
3+
__all__ = ["LoadingApiClient"]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import requests
44

5-
from loading_api_wrapper.settings import (
5+
from loading_sdk.settings import (
66
API_URL,
77
API_VERSION,
88
EDITORIAL_POST_TYPES,
@@ -11,7 +11,7 @@
1111
)
1212

1313

14-
class LoadingApiWrapper:
14+
class LoadingApiClient:
1515
def __init__(self, email=None, password=None):
1616
self._cookies = None
1717

0 commit comments

Comments
 (0)