bgc_data_processing.verbose
¶
Verbose decorator.
Verbose
¶
Verbose Singleton class.
max_allowed: int = 2
class-attribute
instance-attribute
¶
min_allowed: int = 0
class-attribute
instance-attribute
¶
level: int
property
writable
¶
Verbose level.
__new__()
¶
Instanciate new verbose singleton.
Create an instance if there is no instance existing. Otherwise, return the existing one.
Returns:
Type | Description |
---|---|
Verbose
|
Verbose singleton |
Source code in src/bgc_data_processing/verbose.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
set_verbose_level(level)
¶
Instanciate the Verbose singleton to a given value.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
level |
int
|
Verbose level. |
required |
Source code in src/bgc_data_processing/verbose.py
6 7 8 9 10 11 12 13 14 15 |
|
with_verbose(trigger_threshold, message)
¶
Display verbose on the function call.
One must keep in mind that the message is displayed only if the verbose level is STRICTLY greater than the trigger_threshold.
In order to use a placeholder to insert values in the message use square brackets ('[' and ']'). However, keep in mind that for the placeholder to work, one must the name of the parameter in the function call.
For example, with:
@with_verbose(trigger_threshold=0, message="Input with a=[a]") def func(a: int) -> None: print(a)
We can have the following results depending on how 'func' is called:
func(a=3) ... Input with a=3 ... 3
Or
func(3) ... Input with a=[a] ... 3
Parameters:
Name | Type | Description | Default |
---|---|---|---|
trigger_threshold |
int
|
Level to use as trigger for verbose display. Example: if trigger_level = 1 -> message is displayed if the global verbose level is striclty greater than 1. |
required |
message |
str
|
Message to display. |
required |
Source code in src/bgc_data_processing/verbose.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 |
|