A feature-rich Python text case conversion library.
Project description
textcase
A feature-rich Python text case conversion library.
Documentation: https://zobweyt.github.io/textcase
PyPI: https://pypi.org/project/textcase
Features
- Text case conversion: Convert strings between various text cases (e.g., snake_case, kebab-case, camelCase, etc.).
- Extensible Design: Easily extend the library with custom cases and boundaries.
- Acronym Handling: Properly detects and formats acronyms in strings (as in
HTTPRequest
). - Non-ASCII Support: Handles non-ASCII characters seamlessly (no inferences on the input language itself is made).
- 100% Test Coverage: Comprehensive tests ensure reliability and correctness.
- Well-Documented: Clean documentation with usage examples for easy understanding.
- Performant: Efficient implementation without the use of regular expressions.
- Zero Dependencies: The library has no external dependencies, making it lightweight and easy to integrate.
Installation
Create and activate a virtual environment and then install textcase
:
pip install textcase
Usage
You can convert strings into a case using the convert
function:
from textcase import case, convert
print(convert("ronnie james dio", case.SNAKE)) # ronnie_james_dio
print(convert("Ronnie_James_dio", case.CONSTANT)) # RONNIE_JAMES_DIO
print(convert("RONNIE_JAMES_DIO", case.KEBAB)) # ronnie-james-dio
print(convert("RONNIE-JAMES-DIO", case.CAMEL)) # ronnieJamesDio
print(convert("ronnie-james-dio", case.PASCAL)) # RonnieJamesDio
print(convert("RONNIE JAMES DIO", case.LOWER)) # ronnie james dio
print(convert("ronnie james dio", case.UPPER)) # RONNIE JAMES DIO
print(convert("ronnie-james-dio", case.TITLE)) # Ronnie James Dio
print(convert("ronnie james dio", case.SENTENCE)) # Ronnie james dio
See documentation for more usage examples.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
textcase-0.2.2.tar.gz
(45.9 kB
view details)
Built Distribution
textcase-0.2.2-py3-none-any.whl
(34.1 kB
view details)
File details
Details for the file textcase-0.2.2.tar.gz
.
File metadata
- Download URL: textcase-0.2.2.tar.gz
- Upload date:
- Size: 45.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
187cd93fc556ae523a2d2c9c443bc2804c985fb97da5684a191df18d42054341
|
|
MD5 |
5add0872c11323bea8342094d6aab9b6
|
|
BLAKE2b-256 |
9fa92942eb9f8ac8d6404410589ee90605c7fb67ceb7d9a1f77ffe05e8ed39c9
|
File details
Details for the file textcase-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: textcase-0.2.2-py3-none-any.whl
- Upload date:
- Size: 34.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
7d1171bef615673cc54809ba6d47ebd8d597b39aeec633a755daf25dd2db1aaa
|
|
MD5 |
66869e471c0f4356452b1bf11212d1f4
|
|
BLAKE2b-256 |
8e14ec6017b8b2e0e21621b369048932d0f1fc09ba231462ff704182c1b1edda
|