- Added `.vscode` to `.gitignore` to exclude Visual Studio Code settings. - Updated `pyproject.toml` to include `ruff` for linting and configured its settings. - Modified `uv.lock` to include `ruff` in both optional and development dependencies. - Refactored type hints in several files to use `str | None` for optional parameters. - Cleaned up unused imports and whitespace in various modules for improved code clarity.
30 lines
825 B
Python
30 lines
825 B
Python
from typing import TYPE_CHECKING
|
|
|
|
from requests import HTTPError
|
|
|
|
from oxi.exception import OxiAPIError
|
|
|
|
from .view import NodeView
|
|
|
|
if TYPE_CHECKING:
|
|
from requests import Session
|
|
|
|
|
|
class Node:
|
|
def __init__(self, session: "Session", base_url: str):
|
|
self._session = session
|
|
self._base_url = base_url
|
|
|
|
def __call__(self, name: str) -> NodeView:
|
|
try:
|
|
url = f"{self._base_url}/node/show/{name}"
|
|
if not url.endswith(".json"):
|
|
url += ".json"
|
|
response = self._session.get(url)
|
|
response.raise_for_status()
|
|
except HTTPError as e:
|
|
raise OxiAPIError.from_http_error(e, context=f"Node {name}") from e
|
|
return NodeView(
|
|
session=self._session, base_url=self._base_url, data=response.json()
|
|
)
|