Module lib_version_URLPhishing.version_util

Classes

class VersionUtil

A utility class to get the version of the library.

Expand source code
class VersionUtil:
    """
    A utility class to get the version of the library.
    """

    @staticmethod
    def get_version():
        """
        Get the current version of the library.

        Returns:
            str: The current version of the library.
        """
        return __version__

Static methods

def get_version()

Get the current version of the library.

Returns

str
The current version of the library.