from CaseConverter import Convert, Cases # Convert to snake case Convert("This is a cry for help", Cases.Snake) # this_is_a_cry_for_help # Conve a list of words to camel case Convert(["It", "was", "all", "a", "mistake"], Cases.Camel) # itWasAllAMistake # Convert to a custom case (delimiter required) Convert("What do the numbers mean, Mason?", Cases.Custom, delimiter="|") # what|do|the|numbers|mean|mason # Convert from one case to another (from custom case type not supported) Convert.fromCase("thisIsDefinitelyNotFun", Cases.Camel, Cases.Cobol) # THIS-IS-DEFINITELY-NOT-FUN