Skip to content

Digit2digits

The tool to check the availability or syntax of domain, IP or URL.

::

██████╗ ██╗   ██╗███████╗██╗   ██╗███╗   ██╗ ██████╗███████╗██████╗ ██╗     ███████╗
██╔══██╗╚██╗ ██╔╝██╔════╝██║   ██║████╗  ██║██╔════╝██╔════╝██╔══██╗██║     ██╔════╝
██████╔╝ ╚████╔╝ █████╗  ██║   ██║██╔██╗ ██║██║     █████╗  ██████╔╝██║     █████╗
██╔═══╝   ╚██╔╝  ██╔══╝  ██║   ██║██║╚██╗██║██║     ██╔══╝  ██╔══██╗██║     ██╔══╝
██║        ██║   ██║     ╚██████╔╝██║ ╚████║╚██████╗███████╗██████╔╝███████╗███████╗
╚═╝        ╚═╝   ╚═╝      ╚═════╝ ╚═╝  ╚═══╝ ╚═════╝╚══════╝╚═════╝ ╚══════╝╚══════╝

Provides an easy way to convert a digit string to 2 digits.

Author: Nissar Chababy, @funilrys, contactTATAfunilrysTODTODcom

Special thanks: https://pyfunceble.github.io/#/special-thanks

Contributors: https://pyfunceble.github.io/#/contributors

Project link: https://github.com/funilrys/PyFunceble

Project documentation: https://docs.pyfunceble.com

Project homepage: https://pyfunceble.github.io/

License: ::

Copyright 2017, 2018, 2019, 2020, 2022, 2023, 2024 Nissar Chababy

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Digit2Digits

Bases: ConverterBase

Converts a given digit to a 2 digits string.

Source code in PyFunceble/query/whois/converter/digit2digits.py
class Digit2Digits(ConverterBase):
    """
    Converts a given digit to a 2 digits string.
    """

    @ConverterBase.data_to_convert.setter
    def data_to_convert(self, value: Any) -> Any:
        """
        Overrites the default behavior.

        :param value:
            The data to convert.

        :raise TypeError:
            When the given data to convert is not :py:class:`str`
        """

        if not isinstance(value, str):
            raise TypeError(f"<value> should be {str}, {type(value)} given.")

        # pylint: disable=no-member
        super(Digit2Digits, self.__class__).data_to_convert.fset(self, value)

    @ConverterBase.ensure_data_to_convert_is_given
    def get_converted(self) -> str:
        """
        Provides the converted data (after conversion)
        """

        return str(self.data_to_convert).zfill(2)

data_to_convert(value)

Overrites the default behavior.

Parameters:

Name Type Description Default
value Any

The data to convert.

required

Raises:

Type Description
TypeError

When the given data to convert is not class:str

Source code in PyFunceble/query/whois/converter/digit2digits.py
@ConverterBase.data_to_convert.setter
def data_to_convert(self, value: Any) -> Any:
    """
    Overrites the default behavior.

    :param value:
        The data to convert.

    :raise TypeError:
        When the given data to convert is not :py:class:`str`
    """

    if not isinstance(value, str):
        raise TypeError(f"<value> should be {str}, {type(value)} given.")

    # pylint: disable=no-member
    super(Digit2Digits, self.__class__).data_to_convert.fset(self, value)

get_converted()

Provides the converted data (after conversion)

Source code in PyFunceble/query/whois/converter/digit2digits.py
@ConverterBase.ensure_data_to_convert_is_given
def get_converted(self) -> str:
    """
    Provides the converted data (after conversion)
    """

    return str(self.data_to_convert).zfill(2)