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.3.tar.gz
(46.0 kB
view details)
Built Distribution
textcase-0.2.3-py3-none-any.whl
(34.1 kB
view details)
File details
Details for the file textcase-0.2.3.tar.gz
.
File metadata
- Download URL: textcase-0.2.3.tar.gz
- Upload date:
- Size: 46.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
8abd7770038a2b5b4f08048d96c8b35fb1dc2be6aa4f43f09fff5bd54444b2fe
|
|
MD5 |
03a0c9e3e7a5abb3f7967b48fcd0827d
|
|
BLAKE2b-256 |
50d249dcbcc96f82554873cd75cf267fc249b0fb0e3a48fedf6470062c044e95
|
File details
Details for the file textcase-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: textcase-0.2.3-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 |
bd8263fe4420cacb5eedfaf7d0dd215b1271b6d8e40e10bd1f19a06f7c66c810
|
|
MD5 |
99b7505c2c78a3a07bc738da8da67946
|
|
BLAKE2b-256 |
f15d6c8772cf8b833ad962d581e609d5b8a25df2979437858ddcc95a5c8133cf
|