Module nepse_tools.platforms.manager
Contains Main Blueprint and base functions and vars required to develop other things.
Expand source code
"""
Contains Main Blueprint and base functions and vars required to develop other things.
"""
class PlatformManager:
"""
Base class for managing the platform specific things. Provides base features for the platform to build upon.
"""
BASE_URL: str
LOGIN_REQUEST_URL: str
LOGOUT_REQUEST_URL: str
def __init__(self) -> None:
pass
Classes
class PlatformManager-
Base class for managing the platform specific things. Provides base features for the platform to build upon.
Expand source code
class PlatformManager: """ Base class for managing the platform specific things. Provides base features for the platform to build upon. """ BASE_URL: str LOGIN_REQUEST_URL: str LOGOUT_REQUEST_URL: str def __init__(self) -> None: passSubclasses
Class variables
var BASE_URL : strvar LOGIN_REQUEST_URL : strvar LOGOUT_REQUEST_URL : str