Skip to content

Transformations

flowtask.utils.transformations

camelcase_split

camelcase_split(value)

camelcase_split.

Splits a CamelCase word in other words.

to_camel_case

to_camel_case(s)

to_camel_case.

Converts a phrase into CamelCase Format.

Parameters:

Name Type Description Default
s str

The string to convert.

required

Returns:

Type Description
str

The converted string in CamelCase format.

to_snake_case

to_snake_case(s)

to_snake_case.

Converts an string into snake_case format.

Parameters:

Name Type Description Default
s str

The string to convert.

required

Returns:

Type Description
str

The converted string in snake_case format.