alt.hn

4/1/2025 at 10:19:35 PM

Show HN: Textcase: A Python Library for Text Case Conversion

https://github.com/zobweyt/textcase

by zobweyt

4/2/2025 at 2:15:29 AM

I am really impressed by how thoroughly this library thinks through all the applications and edge cases of text casing.

On a recent project I spent about an hour trying to do something similar (and far less sophisticated) before I realized it was a problem I had no desire in really solving, so I backed out all my changes and just went with string.capitalize(), even though it didn’t really do what I was looking for. Looking forward to using this instead!

by twalkz

4/2/2025 at 2:34:06 AM

Thank you for the kind words! I'm glad you appreciate the effort put into covering all those edge cases.

It sounds like you had quite the adventure with text casing on your project. I'm happy this library can save you some time and hassle. Looking forward to see what can be built with it!

by zobweyt

4/2/2025 at 9:39:09 AM

I might be jaded, but I think having libraries for such simple use cases leads to the inevitable `left-pad` situation.

When I say simple use cases I mean that since you probably don't need all of these functions at once that it would be easier to copy the code you need if you don't feel comfortable writing it instead of adding yetanotherlibrary to your dependency tree.

by lnenad

4/2/2025 at 9:50:54 AM

I understand your perspective, and it's a valid concern. However, this library is designed to support not only simple use cases but also more advanced scenarios, providing a comprehensive solution for various needs. Additionally, it has zero dependencies, which helps keep your project lightweight. This way, you can benefit from the library's features without adding unnecessary complexity to your dependency tree. Thank you for sharing your thoughts!

by zobweyt

4/2/2025 at 10:19:07 AM

Nah it's not you or your library, there is definitely a place for such utilities. The issue is broader, related to everyone installing libs for two liners and having bajillion dependencies.

by lnenad

4/2/2025 at 10:24:50 AM

Don't forget space... npm install and 500GBs go "bye-bye"

by axegon_

4/2/2025 at 10:30:34 AM

Hey I'll have you know that memory is cheap nowadays and that I'd be happy to fill out my drives with node libraries for converting a's into A's.

by lnenad

4/2/2025 at 4:50:36 PM

You can always just take the code and put it in your app. Having libraries like these don't force you to add them as a dependency. Assuming the right OSS license.

by 7bit

4/2/2025 at 6:00:34 PM

I agree but in reality many will take the easier path of [`pip` `npm` `cargo` `yarn` `go`] [`install`, `add`] when seeing the functionality out there. I was also making a broader talking point.

by lnenad

4/2/2025 at 9:57:36 AM

> A feature complete Python text case conversion library

I suspect you mean "featureful", "full-featured" or similar[1]—"feature complete" means that you're not going to add any more features.

[1] https://english.stackexchange.com/questions/393517/what-do-y...

by re

4/2/2025 at 10:05:05 AM

Thank you for the clarification! I appreciate your input. I've updated the wording to "feature-rich" to better convey the intended meaning. Your feedback is valuable!

by zobweyt

4/2/2025 at 5:22:49 AM

Great library!

Does it support non-English title casing?

For instance in French, title casing for “les maisons bleues” is “Les Maisons bleues” while for “des maisons bleues” it’s “Des maisons bleues”.

by frizlab

4/2/2025 at 5:35:02 AM

Thanks!

It does not support non-English title casing. From the documentation:

> It also works non-ascii characters. However, no inferences on the language itself is made. For instance, the digraph ij in Dutch will not be capitalized, because it is represented as two distinct Unicode characters. However, æ would be capitalized

by zobweyt

4/2/2025 at 9:00:03 AM

I was talking about the specific rules that are in place for title capitalization. As you can see in my example the uppercase letters seem randomly placed for a title, but they are indeed correct. For German too there are issues where capitalization has a meaning on the word itself. That kind of things.

It looks like your library does not support it, which is understandable, it is a huge problem to tackle, but I just wanted to be sure.

by frizlab

4/2/2025 at 9:13:59 AM

Thank you for the clarification! I understand that title capitalization can be quite complex, especially with specific rules in languages like German where capitalization can change the meaning of a word.

I guess handling these nuances falls under the broader categories of internationalization (i18n) and localization (l10n).

by zobweyt

4/2/2025 at 9:54:05 AM

> It does not support non-English title casing

Perhaps document that clearly—it's an important restriction that the library assumes English-language strings. ("no inferences on the language itself is made" isn't quite true since the language is inferred to be English, or to at least follow English-compatible rules for casing)

by re

4/2/2025 at 9:58:50 AM

Thanks for your feedback! You're right; I should clarify that the library assumes English-language strings for casing. I'll update the documentation to make this limitation clear. I appreciate you pointing it out!

by zobweyt

4/2/2025 at 7:50:20 AM

Nice work, but since it does not handle anything else than strings, maybe it should be named "stringcase" or something.

by zvr

4/2/2025 at 7:59:25 AM

Thank you for the feedback!

I appreciate your suggestion regarding the name, but unfortunately this name was already taken, so "textcase" was chosen.

I also have ideas for adding dictionary key conversion and other features in the future that will handle more than just strings. In addition, you can use this library to convert cases of Iterable[str] using textcase.pattern

by zobweyt

4/2/2025 at 11:25:42 AM

My issue with using "text" is that I assume that a text like "I THINK I DO" should be converted to "I think I do", not "i think i do".

And that's just in English...

If "text" is in Greek, like "Καλημέρα", the upper form should be "ΚΑΛΗΜΕΡΑ", not a juxtaposition of upper() conversions of each letter.

by zvr

4/2/2025 at 11:33:17 AM

Thanks for the clarification!

Yeah, there is such a problem with the naming "text" suggests something different than just a "string".

I guess handling these nuances falls under the broader categories of internationalization (i18n) and localization (l10n).

by zobweyt

4/2/2025 at 9:14:41 AM

Looks brilliant!

My only suggestion is here:

> It also ignores any leading, trailing, or duplicate delimiters:

    from textcase import case, convert

    print(convert("IOStream", case.SNAKE))             # io_stream
    print(convert("myJSONParser", case.SNAKE))         # my_json_parser
    print(convert("__weird--var _name-", case.SNAKE))  # weird_var_name
In the case of a conversion target that has delimiters (snake, kebab) it might be nice to have an alternative option to preserve such features but normalise them to the target delimiter

i.e.

    print(convert("__weird--var _name-", case.SNAKE, preserve=True))  # __weird__var__name

by anentropic

4/2/2025 at 9:25:13 AM

Thank you for your suggestion! Adding a preserve option to maintain leading, trailing, and duplicate delimiters while normalizing them to the target delimiter is a great idea. I’ll consider implementing this feature. Thanks again!

by zobweyt

4/2/2025 at 12:39:04 PM

This should be implemented in editors.

It also looks to be nice in exploratory data analysis:

    df = pd.read_csv(f)
    df.columns = map(convert, df.columns, case.snake)

by wodenokoto

4/2/2025 at 1:08:00 PM

Thanks for the feedback! I'm glad you found a use case for this library!

by zobweyt

4/2/2025 at 1:31:32 AM

My favorite part of this library is that it seems to have zero dependencies!

Python packages seem to often rope in a surprising number of dependencies for relatively limited libraries.

I can easily imagine pulling this package into my work: thank you for keeping the requirements to a minimum!

by kianN

4/2/2025 at 6:41:23 AM

Definitely something to be championed, although I suspect this is a matter of perspective. I find Python packages to have refreshingly few dependencies compared to packages in the JS ecosystem, although compared to the Swift ecosystem which I’m somewhat familiar with, they do tend to have a few more.

by danpalmer

4/2/2025 at 6:53:57 AM

I appreciate your perspective! It's interesting to consider how the built-in libraries of a language can influence its ecosystem. Python does have a rich standard library that often reduces the need for external dependencies. In contrast, JavaScript's ecosystem has evolved around web development, where modularity and flexibility are prioritized, leading to a proliferation of packages.

by zobweyt

4/2/2025 at 1:40:14 AM

Thanks for the kind words!

This library actually has zero dependencies! I'm glad you appreciate the no-dependency design.

It's great to hear that it fits well with your work!

by zobweyt

4/2/2025 at 2:14:39 AM

Is there a GH badge for the dependency count? Depfu maybe. Someone should make one if not; it's worth advertising.

by esafak

4/2/2025 at 2:30:37 AM

Thanks for the suggestion!

Right now, there's no such GH badge. Since the project will always have zero dependencies, I think we can simply use a static badge like this:

https://img.shields.io/badge/dependencies-0-green

by zobweyt

4/2/2025 at 1:59:01 AM

HAppY ApRiL FoOLs!

If only this comment supported case conversion..

In any case congrats on shipping!

by cadamsdotcom

4/2/2025 at 2:16:03 AM

Happy April!

Actually, this library supports conversion of even such strings!

```python

>>> import textcase

>>> textcase.convert("HAppY ApRiL FoOLs!", textcase.case.SNAKE, (textcase.boundary.SPACE,))

'happy_april_fools!'

```

Thanks for the congratulations!

by zobweyt

4/2/2025 at 5:23:57 AM

> A feature complete Python text case conversion library

Considering it supports unicode input, I somehow doubt that. Given that there's no mention of unicode normalization it'll likely break some strings.

by fake-name

4/2/2025 at 5:55:38 AM

That's a great observation! Instead of seeing it as a limitation, it can be treated as a feature. Users can handle Unicode normalization using Python's built-in unicodedata module to ensure proper case conversion. Thanks for pointing that out!

by zobweyt

4/2/2025 at 9:46:24 AM

Now available from AUR: https://aur.archlinux.org/packages/python-textcase-git

by kseistrup

4/2/2025 at 11:47:53 AM

Thank you for the update! I’ve added a badge to the GitHub repository to reflect its availability on AUR.

by zobweyt

4/2/2025 at 2:11:26 PM

Great, thanks!

by kseistrup