Compare commits

..

No commits in common. "e5bb634cf41e5266d1a6e254f241e6c9bf2066ef" and "487d7cb9b2edd5d9d7f058da427c8e2db5a45176" have entirely different histories.

5 changed files with 32 additions and 15 deletions

View file

@ -2,16 +2,14 @@
__version__ = "0.0.1"
from os import linesep
class Class:
"""Root class."""
def __repr__(self) -> str:
"""Return machine-readable state.
"""Represent object variables.
:return: state
:return: representation
:rtype: str
"""
name = self.__class__.__name__
@ -20,14 +18,3 @@ class Class:
]
arguments = ", ".join(attributes)
return f"{name}({arguments})"
def __str__(self) -> str:
"""Return human-readable state.
:return: state
:rtype: str
"""
attributes = [
f"{k} = {v}" for k, v in vars(self).items() if not k.startswith("_")
]
return linesep.join(attributes)

View file

@ -17,3 +17,10 @@ class OS(Class, ABC):
@abstractmethod
def get_name(self) -> str:
"""Return mandatory name."""
def __str__(self) -> str:
"""Return root & name."""
return f"""\
root = {self.root}
name = {self.name}
"""

View file

@ -21,3 +21,10 @@ class PM(Class, ABC):
@abstractmethod
def get_install_command(self) -> Command:
"""Command to install package(s)."""
def __str__(self) -> str:
"""Return commands."""
return f"""\
clean = {self.clean}
install = {self.install}
"""

View file

@ -14,3 +14,12 @@ class Project(Class):
self.file = self.raw.resolve()
self.root: Path = self.file.parent
self.name: str = self.root.name
def __str__(self) -> str:
"""Return file, root & name."""
return f"""\
raw = {self.raw}
file = {self.file}
root = {self.root}
name = {self.name}
"""

View file

@ -13,6 +13,13 @@ class Command(Class):
self.raw = arguments
self.flat: list[str] = []
def __str__(self) -> str:
"""Return raw & flat."""
return f"""\
raw = {self.raw}
flat = {self.flat}
"""
def get_tuples_args(*items: str | tuple[str, ...]) -> list[str]:
"""Turn arguments tuples into an arguments list."""