Module style
Source - is_screaming_snake_case
- Detect whether a name is written in SCREAMING_SNAKE_CASE.
- is_snake_case
- Detect whether an name is written in snake_case.
- is_upper_camel_case
- Detect whether a name is written in UpperCamelCase.
- to_screaming_snake_case
- Convert a name into SCREAMING_SNAKE_CASE. This is a best-guess at what the name
would look like if it were expressed in the correct style.
- to_snake_case
- Convert an identifier into snake_case. This is a best-guess at what the name would look
like if it were expressed in the correct style.
- to_upper_camel_case
- Convert an identifier into UpperCamelCase. This is a best-guess at what the identifier would
look like if it were expressed in the correct style.