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: pass
Subclasses
Class variables
var BASE_URL : str
var LOGIN_REQUEST_URL : str
var LOGOUT_REQUEST_URL : str