api_24sea.version ================= .. py:module:: api_24sea.version .. autoapi-nested-parse:: This module exposes the current version of the package so the version can be retreived directly within other code files. The version assumes the semver notation (major.minor.patch-release.num). Example: Import the version as constant, dict or tuple: >>> from api_24sea.version import __version__ >>> from api_24sea.version import parse_version >>> parse_version(__version__) Attributes: __version__ (str): Current api_24sea version. Classes ------- .. autoapisummary:: api_24sea.version.Version Functions --------- .. autoapisummary:: api_24sea.version.parse_version Module Contents --------------- .. py:class:: Version Convenience structure for interpreting the version information .. py:function:: parse_version(version: str) -> Version Converts the given version string to a named tuple per the semantic version guidelines