Casefy is a lightweight Python package for converting the casing of strings. It supports various case styles like snake_case, camelCase, PascalCase, kebab-case, and more, including Unicode characters. The library has no third-party dependencies. It is currently at version 1.1.0 and receives updates as needed for bug fixes or new features.
pip install casefyVerified import paths — ran on the pinned version, not inferred.
Initialize the library by importing 'casefy', then use its various functions like `snakecase`, `camelcase`, or `pascalcase` to convert strings between different casing conventions.
Review the documentation for `snakecase` and `separatorcase` to understand the updated behavior of `keep_together` and adjust your code if necessary.
Test your application thoroughly after migrating from `python-stringcase` to `casefy` to ensure all edge cases and expected conversions are handled correctly. Refer to Casefy's official documentation for current API behavior.
Run `pip install casefy` in your terminal to install the package.
Refer to the 'casefy' documentation and use the correct function name, such as `casefy.snakecase()` for converting to snake_case.
Ensure that the input argument to all 'casefy' functions is a string or bytes-like object.
No dependency data recorded yet.