ats_utilities.splasher.iext_infrastructure module¶
- Module
iext_infrastructure.py
- Copyright
Copyright (C) 2017 - 2026 Vladimir Roncevic <elektron.ronca@gmail.com> ats_utilities is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. ats_utilities is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
- Info
Defines abstract class IExtInfrastructure with method(s). Interface for processing hyperlinks for splash screen.
- class ats_utilities.splasher.iext_infrastructure.IExtInfrastructure[source]¶
Bases:
ABCDefines abstract class IExtInfrastructure with method(s). Interface for processing hyperlinks for splash screen.
It defines:
- attributes:
None.
- methods:
- infrastructure_property - Property methods for set/get operations.get_info_text - Pre-processes info text for splash screen.get_issue_text - Pre-processes issue text for splash screen.get_author_text - Pre-processes author text for splash screen.__str__ - Returns the external infrastructure as string representation.
- _abc_impl = <_abc._abc_data object>¶
- abstractmethod get_author_text() str[source]¶
Pre-processes author text for splash screen.
- Returns:
Hyperlink with author info.
- Return type:
<str>
- Exceptions:
NotImplementedError.
- abstractmethod get_info_text() str[source]¶
Pre-processes info text for splash screen.
- Returns:
Hyperlink with info text.
- Return type:
<str>
- Exceptions:
NotImplementedError.
- abstractmethod get_issue_text() str[source]¶
Pre-processes issue text for splash screen.
- Returns:
Hyperlink with issue info.
- Return type:
<str>
- Exceptions:
NotImplementedError.
- abstract property infrastructure_property: dict[Any, Any] | None¶
Property method for getting infrastructure property.
- Returns:
Formatted infrastructure property in dict format | None.
- Return type:
<dict[Any, Any] | None>
- Exceptions:
NotImplementedError.