I constantly forget which is Camel case and which is Pascal case. So I thought that maybe a little history will help. Where do the names of these conventions come from? Is t
For anyone looking, here's a Python module that'll do either case: to-camel-case
pip install to-camel-case
import to_camel_case to_camel_case('snake_case') # snakeCase to_camel_case('snake_case', pascal=True) # SnakeCase
Full disclosure: I'm the author