/utilities-py

Python library intended to facilitate the dev's life

Primary LanguagePythonApache License 2.0Apache-2.0

built-with-love works-on-linux works-on-windows made-with-python

๐ŸšฉPreamble

This librairy has been developped to facilitate the developer's life. It contains a bunch of useful functions, that you can either call from the lib, or copy/paste into your code.

๐Ÿ”— Related Project

๐Ÿฆ† Changelogs

def make_list_choice(self, choice_list: list) -> str:
    """
    Creates a list of choices that looks like this:
        0) X
        1) Y
        2) Z
        ...
    Ability to type the number of the desired choice, or the name of the choice
    :param choice_list:
    :return str: returns the right part of the choice (here, X, Y or Z)
    """
    ...


def dict_to_json(result: dict):
    """
    Convert a dictionary to a json file
    :return: 
    """
    ...

๐Ÿ“ Features

  • Files and folder handling
  • Random values return
  • Networking tools
  • Ipv4/Ipv6 regex for checking addresses

And a bunch of other cool things !

๐Ÿ–Š Authors

๐Ÿ“œ License