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.
- utilities go
- utilities php-mysql (not started yet)
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:
"""
...
- Files and folder handling
- Random values return
- Networking tools
- Ipv4/Ipv6 regex for checking addresses
And a bunch of other cool things !