You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| [Classes](./classes.md) | The `classes` module is designed for functions to be executed _on_ classes; not _within_ classes.<br>For any methods/functions that should be added _to_ classes, you should consider re-designing the original class, or sub-classing it to make further alterations.
10
-
| [Bools](./bools.md) | The `bools` module is used how to manipulate and enhance Python booleans.<br>Primarily, this module is used to store the `strtobool()` function, which used to be found in the `distutils.util` module, until it was deprecated. As mentioned in [PEP632](https://peps.python.org/pep-0632/#migration-advice), we should re-implement this function in our own code. And that's what we've done here.
11
-
| [Lists](./lists.md) | The `lists` module is used how to manipulate and enhance Python lists.<br>Note that functions in this module will only take-in and manipulate existing `#!py list` objects, and also output `#!py list` objects. It will not sub-class the base `#!py list` object, or create new '`#!py list`-like' objects. It will always remain pure python types at it's core.
12
-
| [Strings](./strings.md) | The `strings` module is for manipulating and checking certain string objects.
13
-
| [Dictionaries](./dictionaries.md) | The `dictionaries` module is used how to manipulate and enhance Python dictionaries.<br>Note that functions in this module will only take-in and manipulate existing `#!py dict` objects, and also output `#!py dict` objects. It will not sub-class the base `#!py dict` object, or create new '`#!py dict`-like' objects. It will always remain pure python types at it's core.
14
-
| [Checkers](./checkers.md) | Check certain values against other objects.
15
-
| [Output](./output.md) | The `output` module is for streamlining how data is outputted.<br>This includes `#!py print()`'ing to the terminal and `#!py log()`'ing to files.
16
-
| [Retry](./retry.md) | The `retry` module is for enabling automatic retrying of a given function when a specific `Exception` is thrown.
17
-
| [Defaults](./defaults.md) | The `defaults` module is used how to set and control default values for our various Python processes.
|[Classes](./classes.md)| The `classes` module is designed for functions to be executed _on_ classes; not _within_ classes.<br>For any methods/functions that should be added _to_ classes, you should consider re-designing the original class, or sub-classing it to make further alterations. |
10
+
|[Bools](./bools.md)| The `bools` module is used how to manipulate and enhance Python booleans.<br>Primarily, this module is used to store the `strtobool()` function, which used to be found in the `distutils.util` module, until it was deprecated. As mentioned in [PEP632](https://peps.python.org/pep-0632/#migration-advice), we should re-implement this function in our own code. And that's what we've done here. |
11
+
|[Lists](./lists.md)| The `lists` module is used how to manipulate and enhance Python lists.<br>Note that functions in this module will only take-in and manipulate existing `#!py list` objects, and also output `#!py list` objects. It will not sub-class the base `#!py list` object, or create new '`#!py list`-like' objects. It will always remain pure python types at it's core. |
12
+
|[Strings](./strings.md)| The `strings` module is for manipulating and checking certain string objects. |
13
+
|[Dictionaries](./dictionaries.md)| The `dictionaries` module is used how to manipulate and enhance Python dictionaries.<br>Note that functions in this module will only take-in and manipulate existing `#!py dict` objects, and also output `#!py dict` objects. It will not sub-class the base `#!py dict` object, or create new '`#!py dict`-like' objects. It will always remain pure python types at it's core. |
14
+
|[Generators](./generators.md)| The `generators` module is for generating information as needed.<br>Such functions are typically used to generate data that is not stored in a database or file, but rather computed on-the-fly based on input parameters. |
15
+
|[Checkers](./checkers.md)| The `checkers` module provides functions to check certain values against other objects. It includes type checking, value validation, and membership checks. |
16
+
|[Output](./output.md)| The `output` module is for streamlining how data is outputted.<br>This includes `#!py print()`'ing to the terminal and `#!py log()`'ing to files. |
17
+
|[Retry](./retry.md)| The `retry` module is for enabling automatic retrying of a given function when a specific `Exception` is thrown. |
18
+
|[Defaults](./defaults.md)| The `defaults` module is used how to set and control default values for our various Python processes. |
0 commit comments