Repository URL to install this package:
|
Version:
5.15.7 ▾
|
import re
_first_cap_re = re.compile('(.)([A-Z][a-z]+)')
_all_cap_re = re.compile('([a-z0-9])([A-Z])')
def split_camel_case(text: str, sep: str = '_') -> str:
s1 = _first_cap_re.sub(r'\1%s\2' % sep, text)
return _all_cap_re.sub(r'\1%s\2' % sep, s1).lower()