I am really impressed by how thoroughly this library thinks through all the applications and edge cases of text casing.<p>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!
I might be jaded, but I think having libraries for such simple use cases leads to the inevitable `left-pad` situation.<p>When I say simple use cases I mean that since you <i>probably</i> 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.
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!
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.
> A feature complete Python text case conversion library<p>I suspect you mean "featureful", "full-featured" or similar[1]—"feature complete" means that you're not going to add any more features.<p>[1] <a href="https://english.stackexchange.com/questions/393517/what-do-you-call-something-that-has-a-lot-of-features" rel="nofollow">https://english.stackexchange.com/questions/393517/what-do-y...</a>
Great library!<p>Does it support non-English title casing?<p>For instance in French, title casing for “les maisons bleues” is “Les Maisons bleues” while for “des maisons bleues” it’s “Des maisons bleues”.
Thanks!<p>It does not support non-English title casing. From the documentation:<p>> 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
I was talking about the specific <i>rules</i> 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.<p>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.
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.<p>I guess handling these nuances falls under the broader categories of internationalization (i18n) and localization (l10n).
> It does not support non-English title casing<p>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)
Nice work, but since it does not handle anything else than strings, maybe it should be named "stringcase" or something.
Thank you for the feedback!<p>I appreciate your suggestion regarding the name, but unfortunately this name was already taken, so "textcase" was chosen.<p>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
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".<p>And that's just in English...<p>If "text" is in Greek, like "Καλημέρα", the upper form should be "ΚΑΛΗΜΕΡΑ", not a juxtaposition of upper() conversions of each letter.
Looks brilliant!<p>My only suggestion is here:<p>> It also ignores any leading, trailing, or duplicate delimiters:<p><pre><code> 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
</code></pre>
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<p>i.e.<p><pre><code> print(convert("__weird--var _name-", case.SNAKE, preserve=True)) # __weird__var__name</code></pre>
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!
This should be implemented in editors.<p>It also looks to be nice in exploratory data analysis:<p><pre><code> df = pd.read_csv(f)
df.columns = map(convert, df.columns, case.snake)</code></pre>
My favorite part of this library is that it seems to have zero dependencies!<p>Python packages seem to often rope in a surprising number of dependencies for relatively limited libraries.<p>I can easily imagine pulling this package into my work: thank you for keeping the requirements to a minimum!
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.
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.
Thanks for the kind words!<p>This library actually has zero dependencies! I'm glad you appreciate the no-dependency design.<p>It's great to hear that it fits well with your work!
Bonus: <a href="https://github.com/un33k/python-slugify" rel="nofollow">https://github.com/un33k/python-slugify</a>
HAppY ApRiL FoOLs!<p>If only this comment supported case conversion..<p>In any case congrats on shipping!
Happy April!<p>Actually, this library supports conversion of even such strings!<p>```python<p>>>> import textcase<p>>>> textcase.convert("HAppY ApRiL FoOLs!", textcase.case.SNAKE, (textcase.boundary.SPACE,))<p>'happy_april_fools!'<p>```<p>Thanks for the congratulations!
> A feature complete Python text case conversion library<p>Considering it supports unicode input, I somehow doubt that. Given that there's no mention of unicode normalization it'll likely break some strings.
Now available from AUR: <a href="https://aur.archlinux.org/packages/python-textcase-git" rel="nofollow">https://aur.archlinux.org/packages/python-textcase-git</a>