Skip to content

Instantly share code, notes, and snippets.

@wonderbeyond
Created November 23, 2022 11:03
Show Gist options
  • Save wonderbeyond/643433ed5cdb08c5736927def14d9c2e to your computer and use it in GitHub Desktop.
Save wonderbeyond/643433ed5cdb08c5736927def14d9c2e to your computer and use it in GitHub Desktop.
[Python] camel case to (fat) snake case
def camel_case_to_snake_case(s: str, use_fat: bool = False) -> str:
"""
>>> camel_case_to_snake_case("ProcedureContextStatus")
"procedure_context_status"
>>> camel_case_to_snake_case("ProcedureContextStatus", use_fat=True)
"PROCEDURE_CONTEXT_STATUS"
"""
chars = [s[0].upper() if use_fat else s[0].lower()]
for c in s[1:]:
if c in ('ABCDEFGHIJKLMNOPQRSTUVWXYZ'):
chars.append('_')
chars.append(c.upper() if use_fat else c.lower())
return ''.join(chars)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment