string_tools
sanitize_string(value)
¶
Make string safe to be used in file/folder names and subprocess commands.
Make the string lower-case, and replace any special character with an underscore, where special characters are:
>>> string.punctuation
'!"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~'
>>> string.whitespace
' \t\n\r\x0b\x0c'
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value |
str
|
Input string |
required |
Returns:
Type | Description |
---|---|
str
|
Sanitized value |
Source code in fractal_server/string_tools.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
validate_cmd(command, *, allow_char=None, attribute_name='Command')
¶
Assert that the provided command
does not contain any of the forbidden
characters for commands
(fractal_server.string_tools.NOT_ALLOWED_FOR_COMMANDS)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
command |
str
|
command to validate. |
required |
allow_char |
Optional[str]
|
chars to accept among the forbidden ones |
None
|
attribute_name |
str
|
Name of the attribute, to be used in error message. |
'Command'
|
Source code in fractal_server/string_tools.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
|