Transformations¶
flowtask.utils.transformations
¶
to_camel_case
¶
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.
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. |