- Updated the `OxiAPI` class to check for `None` explicitly when setting authentication credentials. - Added type hints to the `Node` class and introduced a TODO for future enhancements. - Refactored properties in the `NodeView` class to include type hints and improved handling of optional data retrieval.
25 lines
634 B
Python
25 lines
634 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from .view import NodeView
|
|
|
|
|
|
if TYPE_CHECKING:
|
|
from requests import Session
|
|
|
|
|
|
# TODO: Add type hints
|
|
class Node:
|
|
def __init__(self, session: "Session", base_url: str):
|
|
self._session = session
|
|
self._base_url = base_url
|
|
|
|
def __call__(self, name: str) -> NodeView:
|
|
url = f"{self._base_url}/node/show/{name}"
|
|
if not url.endswith(".json"):
|
|
url += ".json"
|
|
response = self._session.get(url)
|
|
response.raise_for_status()
|
|
return NodeView(
|
|
session=self._session, base_url=self._base_url, data=response.json()
|
|
)
|