Install & Compatibility
Where this runs
tested against v1.1.0 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
muslpy 3.10–3.95 runs
installs and imports cleanly · install 0.0s · import 0.000s · 19.2MB
glibcpy 3.10–3.95 runs
installs and imports cleanly · install 2.4s · import 0.000s · 20MB
17MB installed
● package 17MB
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
camel_case
✓ from case_convert import camel_case
✗ from case_convert import camel
snake_case
✓ from case_convert import snake_case
pascal_case
✓ from case_convert import pascal_case
Basic usage: import any case converter function and pass a string.
from case_convert import camel, snake, pascal, kebab
text = "hello_world_example"
print(camel(text)) # helloWorldExample
print(snake(text)) # hello_world_example
print(pascal(text)) # HelloWorldExample
print(kebab(text)) # hello-world-example
Upgrade
Version history
1.1.0latest on PyPI · released Sep 10, 2020
Audit
Dependencies
No dependency data recorded yet.