{"id":15724558,"url":"https://github.com/rickbarretto/tocase","last_synced_at":"2025-05-13T04:36:18.217Z","repository":{"id":57460239,"uuid":"359276837","full_name":"RickBarretto/toCase","owner":"RickBarretto","description":"toCase is a Case converter made in python, for peoples who wants simplify this feature. It can convert to and from Camel, Pascal, Snake, Kebab and Strings Sentences.","archived":false,"fork":false,"pushed_at":"2024-09-04T01:50:24.000Z","size":292,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-12T05:49:37.794Z","etag":null,"topics":["case","case-study","caseconverter","conversion","converter","pip","python","python3","regex","text","text-analysis","text-processing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RickBarretto.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-04-18T23:46:29.000Z","updated_at":"2024-09-04T01:50:27.000Z","dependencies_parsed_at":"2024-10-24T19:01:32.101Z","dependency_job_id":"116f905e-c87d-4e6a-9314-d40b9a13225d","html_url":"https://github.com/RickBarretto/toCase","commit_stats":{"total_commits":54,"total_committers":2,"mean_commits":27.0,"dds":0.01851851851851849,"last_synced_commit":"13720f3bcef017951c76dc41ba0dbe0fb355b66a"},"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RickBarretto%2FtoCase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RickBarretto%2FtoCase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RickBarretto%2FtoCase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RickBarretto%2FtoCase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RickBarretto","download_url":"https://codeload.github.com/RickBarretto/toCase/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253877361,"owners_count":21977634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["case","case-study","caseconverter","conversion","converter","pip","python","python3","regex","text","text-analysis","text-processing"],"created_at":"2024-10-03T22:17:10.171Z","updated_at":"2025-05-13T04:36:18.192Z","avatar_url":"https://github.com/RickBarretto.png","language":"Python","readme":"\u003ch1 align=\"center\"\u003eRB toCase\u003ch1\u003e\n\u003cimg alt=\"Cover\" src=\"./assets/cover.svg\"\u003e\n\u003ch4 align=\"center\"\u003emade by: \u003ca href=\"https://github.com/RickBarretto/\"\u003eRickBarreto\u003c/a\u003e\u003c/h4\u003e\n\n## What is it?\n**RB toCase** is a Case converter made in python, for peoples who wants simplify this feature. It can convert to and from Camel, Pascal, Snake, Kebab and Strings Sentences.\n**And, You don't need say what is the input type, the code parse it. Just say whats is the output type.**\n\n\u003e Older name was toCase, but when I was publishing on Pipy tocase package already exists. So I changed the name!\n\n## Why I must to use it?\n+ toCase was made to make easy your life with case converting\n+ I was made in python, so, if you want, you can copy the [toCase.py](https://github.com/RickBarretto/toCase/blob/main/src/ToCase.py) and use in your project. **It's free to use, look the [MIT LICENSE](LICENSE).**\n\n## Glossary:\n- [What is it?](#what-is-it)\n- [Why I must to use it?](#why-i-must-to-use-it)\n- [Glossary:](#glossary)\n- [Installing](#installing)\n- [Examples:](#examples)\n  - [Importing:](#importing)\n  - [Convert to Camel Case:](#convert-to-camel-case)\n  - [Convert to Snake Case:](#convert-to-snake-case)\n  - [Convert to Kebab Case:](#convert-to-kebab-case)\n  - [Convert to Pascal Case:](#convert-to-pascal-case)\n  - [Convert to Sentence:](#convert-to-sentence)\n- [Read The Docs!](#read-the-docs)\n\n## Installing\n\n```bash\n$ poetry add rb_tocase\n\nor\n\n$ pip install rb_tocase\n```\n\n## Examples: \n\n### Importing:\n```py\n\u003e\u003e\u003e from rb_tocase import Case\n\u003e\u003e\u003e # or\n\u003e\u003e\u003e from rb_tocase import *\n\u003e\u003e\u003e # see the examples below\n```\n\n### Convert to Camel Case:\n```py\n\u003e\u003e\u003e Case.to_camel(\"Changing to CaMel CASE\")   # From String Sentence\n'changingToCamelCase'\n\u003e\u003e\u003e Case.to_camel(\"Changing-to-camel-case\")   # From Kebab Case\n'changingToCamelCase'\n\u003e\u003e\u003e Case.to_camel(\"Changing_to_CAMEL_CASE\")   # From Snake Case\n'changingToCamelCase'\n\u003e\u003e\u003e Case.to_camel(\" ChangingToCamelCase  \")   # From Pascal Case\n'changingToCamelCase'\n```\n+ [See more](DOC.md#casetocamelstring-str-case1-str--lower)\n\n### Convert to Snake Case:\n```py\n\u003e\u003e\u003e Case.to_snake(\" ChanginToSnakeCase \")     # From Pascal Case\n'changin_to_snake_case'\n\u003e\u003e\u003e Case.to_snake(\" Changin To Snake Case \")  # From String\n'changin_to_snake_case'\n\u003e\u003e\u003e Case.to_snake(\" Changin-To-Snake-Case \")  # From Kebab\n'changin_to_snake_case'\n\u003e\u003e\u003e Case.to_snake(\" changinToSnakeCase \")     # From Camel\n'changin_to_snake_case'\n```\n[See more](DOC.md#casetosnakestring-str-case-str--lower-case1-str--lower)\n\n### Convert to Kebab Case:\n```py\n\u003e\u003e\u003e Case.to_kebab(\"Changing to Kebab\")    # From String\n'changing-to-kebab'\n\u003e\u003e\u003e Case.to_kebab(\"ChangingToKebab\")      # From Pascal Case\n'changing-to-kebab'\n\u003e\u003e\u003e Case.to_kebab(\"changingToKebab\")      # From Camel Case\n'changing-to-kebab'\n\u003e\u003e\u003e Case.to_kebab(\"changing_to_kebab\")    # From Snake Case\n'changing-to-kebab'\n```\n\n[See more](DOC.md#casetokebabstring-str-case-str--lower-case1-str--lower)\n\n### Convert to Pascal Case:\n```py\n\u003e\u003e\u003e Case.to_pascal(\"Changing to Pascal\")  # From String\n'ChangingToPascal'\n\u003e\u003e\u003e Case.to_pascal(\"Changing-to-Pascal\")  # From Kebab\n'ChangingToPascal'\n\u003e\u003e\u003e Case.to_pascal(\"Changing_to_Pascal\")  # From Snake\n'ChangingToPascal'\n\u003e\u003e\u003e Case.to_pascal(\"ChangingtoPascal\")    # From Pascal\n'ChangingtoPascal'\n\u003e\u003e\u003e Case.to_pascal(\"changingToPascal\") # From Camel\n'ChangingToPascal'\n```\n+ [See more](DOC.md#casetopascalstring-str-case1-str--title)\n\n### Convert to Sentence:\n```py\n\u003e\u003e\u003e Case.to_sentence(\"ItsAPascalCase\")\n'its a pascal case'\n\u003e\u003e\u003e Case.to_sentence(\"itsACamelCase\")\n'its a camel case'\n\u003e\u003e\u003e Case.to_sentence(\"Its-A-Kebab-Case\")\n'its a snake case'\n\u003e\u003e\u003e Case.to_sentence(\"Its_a_snake_case\")\n'its a snake case'\n```\n+ [See more](DOC.md#casetosentencestring-str-case-str--lower-case1-str--lower)\n\n\n## Read The Docs!\n[Documentation](DOC.md)","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickbarretto%2Ftocase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frickbarretto%2Ftocase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frickbarretto%2Ftocase/lists"}