├── .envrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── LICENSE ├── Makefile ├── README.md ├── artwork ├── Github Social.sketch └── humps.png ├── docs ├── Makefile ├── api.rst ├── conf.py ├── index.rst └── user │ ├── install.rst │ └── quickstart.rst ├── humps ├── __init__.py ├── __init__.pyi ├── main.py ├── main.pyi └── py.typed ├── pyproject.toml ├── setup.cfg ├── tea.yaml └── tests ├── __init__.py ├── test_camelize.py ├── test_decamelize.py ├── test_dekebabize.py ├── test_humps.py ├── test_kebabize.py ├── test_pascalize.py └── test_separate_words.py /.envrc: -------------------------------------------------------------------------------- 1 | layout_poetry -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [Format] 2 | good-names=i,j,k,ex,_,pk,x,y,a,b,c,d,r,s,t,q,fn 3 | -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/README.md -------------------------------------------------------------------------------- /artwork/Github Social.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/artwork/Github Social.sketch -------------------------------------------------------------------------------- /artwork/humps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/artwork/humps.png -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/user/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/user/install.rst -------------------------------------------------------------------------------- /docs/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/docs/user/quickstart.rst -------------------------------------------------------------------------------- /humps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/humps/__init__.py -------------------------------------------------------------------------------- /humps/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/humps/__init__.pyi -------------------------------------------------------------------------------- /humps/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/humps/main.py -------------------------------------------------------------------------------- /humps/main.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/humps/main.pyi -------------------------------------------------------------------------------- /humps/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/setup.cfg -------------------------------------------------------------------------------- /tea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tea.yaml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_camelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_camelize.py -------------------------------------------------------------------------------- /tests/test_decamelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_decamelize.py -------------------------------------------------------------------------------- /tests/test_dekebabize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_dekebabize.py -------------------------------------------------------------------------------- /tests/test_humps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_humps.py -------------------------------------------------------------------------------- /tests/test_kebabize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_kebabize.py -------------------------------------------------------------------------------- /tests/test_pascalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_pascalize.py -------------------------------------------------------------------------------- /tests/test_separate_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nficano/humps/HEAD/tests/test_separate_words.py --------------------------------------------------------------------------------