ksuit.utils.common.naming¶
Functions¶
|
Convert pascal/camel to snake case using Regex. |
|
Return the type name of an object in lowercase. |
|
Return the type name of an object in snake case. |
Module Contents¶
- ksuit.utils.common.naming.pascal_to_snake(pascal_case)¶
Convert pascal/camel to snake case using Regex.
Handles acronyms and numbers correctly. .. rubric:: Example
XMLParser -> xml_parser HTTPClient -> http_client V2Model -> v2_model
- ksuit.utils.common.naming.lower_type_name(obj)¶
Return the type name of an object in lowercase.