This is a fork
All credit goes to Alejandro Frias - here is the original repo. I only forked to gain vendorized dependencies.
differences between my fork and the original
- I needed to remove the 'regex' dependency because it is not pure python and thus couldn't be vendorized.
- I removed python2 support. It might be trivial to add later but I don't plan on using python2 personally so if you want to use this fork and need support then create a github issue.
Case Conversion
This is a port of the CaseConversion Sublime Plugin, by Davis Clark's, to a regular python package. I couldn't find any other python packages on PyPi at the time (Feb 2016) that could seamlessly convert from any case to any other case without having to specify from what type of case I was converting. This plugin worked really well, so I separated the (non-sublime) python parts of the plugin into this useful python package. I also added Unicode support using the regex package. Credit goes to Davis Clark's and the contributors to that plugin (Scott Bessler, Curtis Gibby, Matt Morrison) for their awesome work on making such a robust and awesome case converter.
Features
- Autodetection of case (no need to specify explicitly which case you are converting from!)
- Unicode supported (non-ASCII characters for days!)
- Acronym detection (no funky splitting on every capital letter of an all caps acronym like
HTTPError!) - And obviously case conversions from/to the following types of cases:
camelcasepascalcasesnakecasedashcasespinalcase(alias fordashcase)kebabcase(alias fordashcase)constcasescreaming_snakecase(alias forconstcase)dotcaseseparate_wordsslashcasebackslashcase
- Oh! Python2 and Python3 supported!
Usage
Normal use is self-explanatory.
>>> import case_conversion
>>> case_conversion.kebabcase("FOO_BAR_STRING")
'foo-bar-string'
>>> print(case_conversion.constcase(u"fóó-bar-string"))
FÓÓ_BAR_STRING
To use acronym detection set detect_acronyms to True and pass in a list of acronyms to detect as whole words.
>>> import case_conversion
>>> case_conversion.snakecase("fooBarHTTPError")
'foo_bar_h_t_t_p_error' # ewwww
>>> case_conversion.snakecase("fooBarHTTPError", detect_acronyms=True, acronyms=['HTTP'])
'foo_bar_http_error' # pretty
Install
pip install case-conversion
Licence
Using MIT licence with Davis Clark's Copyright
Release files for po-case-conversion 0.4.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| po_case_conversion-0.4.0.tar.gz | 8.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| po_case_conversion-0.4.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.9 kB
Release files / po_case_conversion-0.4.0.tar.gz
| Download URL | po_case_conversion-0.4.0.tar.gz |
|---|---|
| Size | 8.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
3081a4b05004558ba4d4e881a5333ad707243b72bcc21377772a96fd28b77827
|
|
BLAKE2b-256 checksum How to use checksums |
05def67e3bfdbfd902113701f593c69384cec4042b513e94d492eed621539170
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/0.12.17 CPython/3.7.4 Linux/5.2.11-arch1-1-ARCH
|
Release files / po_case_conversion-0.4.0-py3-none-any.whl
| Download URL | po_case_conversion-0.4.0-py3-none-any.whl |
|---|---|
| Size | 7.7 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
624e73247b42e0be0d726c3f45f672a2d7f0e7aad3ae8354a665fb3ded72bc9d
|
|
BLAKE2b-256 checksum How to use checksums |
7dcb59e844f19ae1e8bf026b428cf08e0bc4295a8fb37f451f6084b351d9970c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/0.12.17 CPython/3.7.4 Linux/5.2.11-arch1-1-ARCH
|