python-stringcase
python-stringcase copied to clipboard
Periods in CamelCase
>>> import stringcase
>>> stringcase.camelcase("foo.bar")
'foar'
Expected: either Foo.Bar or FooBar I guess.
(Python 3.7.7)