https://github.com/flopp/camelsplit
Camel case aware word splitting.
https://github.com/flopp/camelsplit
Last synced: 4 months ago
JSON representation
Camel case aware word splitting.
- Host: GitHub
- URL: https://github.com/flopp/camelsplit
- Owner: flopp
- License: mit
- Created: 2018-09-23T12:55:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-22T10:41:17.000Z (almost 2 years ago)
- Last Synced: 2026-01-04T11:22:04.018Z (5 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/flopp/camelsplit)
[](https://pypi.org/project/camelsplit/)

# camelsplit 🐪🖖
Camel case aware word splitting.
## Install
Just grab the package from PyPI:
```
pip install camelsplit
```
## Usage
```
from camelsplit import camelsplit
# 'CamelCase' -> ['Camel', 'Case']
camelsplit('CamelCase')
# 'HTTPRequest' -> ['HTTP', 'Request']
camelsplit('HTTPRequest')
# 'IEEE 802.11ac' -> ['IEEE', ' 802.11', 'ac']
camelsplit('IEEE 802.11ac')
```
## License
[MIT](https://github.com/flopp/camelsplit/blob/master/LICENSE) © 2018 Florian Pigorsch & contributors