api_24sea.version#

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#

Version

Convenience structure for interpreting the version information

Functions#

parse_version(→ Version)

Converts the given version string to a named tuple per the semantic

Module Contents#

class Version#

Convenience structure for interpreting the version information

parse_version(version: str) Version#

Converts the given version string to a named tuple per the semantic version guidelines