{"id":20571500,"url":"https://github.com/okunishinishi/python-stringcase","last_synced_at":"2025-05-15T16:02:27.982Z","repository":{"id":35106240,"uuid":"39284642","full_name":"okunishinishi/python-stringcase","owner":"okunishinishi","description":"String case converter for python.","archived":false,"fork":false,"pushed_at":"2023-06-18T05:53:23.000Z","size":28,"stargazers_count":209,"open_issues_count":32,"forks_count":43,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-05-14T08:59:13.654Z","etag":null,"topics":["python"],"latest_commit_sha":null,"homepage":"https://pypi.python.org/pypi/stringcase","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/okunishinishi.png","metadata":{"files":{"readme":"README.rst","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":"2015-07-18T03:07:57.000Z","updated_at":"2025-04-17T06:01:25.000Z","dependencies_parsed_at":"2024-06-18T13:33:08.062Z","dependency_job_id":"4ca9036a-f875-4fdf-b415-d07ec2872204","html_url":"https://github.com/okunishinishi/python-stringcase","commit_stats":{"total_commits":28,"total_committers":8,"mean_commits":3.5,"dds":0.2857142857142857,"last_synced_commit":"04afe0044a9c513bc7899ae2dd1b97f1fe165f6c"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okunishinishi%2Fpython-stringcase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okunishinishi%2Fpython-stringcase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okunishinishi%2Fpython-stringcase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okunishinishi%2Fpython-stringcase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/okunishinishi","download_url":"https://codeload.github.com/okunishinishi/python-stringcase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254374388,"owners_count":22060609,"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":["python"],"created_at":"2024-11-16T05:16:24.142Z","updated_at":"2025-05-15T16:02:27.934Z","avatar_url":"https://github.com/okunishinishi.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"stringcase\n==========\n\nConvert string cases between camel case, pascal case, snake case etc...\n\n|build_status_badge| |coverage_badge| |pypi_version_badge|\n\nUsage\n-----\n\n.. code:: python\n\n    import stringcase\n    stringcase.camelcase('foo_bar_baz') # =\u003e \"fooBarBaz\"\n    stringcase.camelcase('FooBarBaz') # =\u003e \"fooBarBaz\"\n    stringcase.capitalcase('foo_bar_baz') # =\u003e \"Foo_bar_baz\"\n    stringcase.capitalcase('FooBarBaz') # =\u003e \"FooBarBaz\"\n    stringcase.constcase('foo_bar_baz') # =\u003e \"FOO_BAR_BAZ\"\n    stringcase.constcase('FooBarBaz') # =\u003e \"_FOO_BAR_BAZ\"\n    stringcase.lowercase('foo_bar_baz') # =\u003e \"foo_bar_baz\"\n    stringcase.lowercase('FooBarBaz') # =\u003e \"foobarbaz\"\n    stringcase.pascalcase('foo_bar_baz') # =\u003e \"FooBarBaz\"\n    stringcase.pascalcase('FooBarBaz') # =\u003e \"FooBarBaz\"\n    stringcase.pathcase('foo_bar_baz') # =\u003e \"foo/bar/baz\"\n    stringcase.pathcase('FooBarBaz') # =\u003e \"/foo/bar/baz\"\n    stringcase.sentencecase('foo_bar_baz') # =\u003e \"Foo bar baz\"\n    stringcase.sentencecase('FooBarBaz') # =\u003e \"Foo bar baz\"\n    stringcase.snakecase('foo_bar_baz') # =\u003e \"foo_bar_baz\"\n    stringcase.snakecase('FooBarBaz') # =\u003e \"foo_bar_baz\"\n    stringcase.spinalcase('foo_bar_baz') # =\u003e \"foo-bar-baz\"\n    stringcase.spinalcase('FooBarBaz') # =\u003e \"-foo-bar-baz\"\n    stringcase.titlecase('foo_bar_baz') # =\u003e \"Foo Bar Baz\"\n    stringcase.titlecase('FooBarBaz') # =\u003e \" Foo Bar Baz\"\n    stringcase.trimcase('foo_bar_baz') # =\u003e \"foo_bar_baz\"\n    stringcase.trimcase('FooBarBaz') # =\u003e \"FooBarBaz\"\n    stringcase.uppercase('foo_bar_baz') # =\u003e \"FOO_BAR_BAZ\"\n    stringcase.uppercase('FooBarBaz') # =\u003e \"FOOBARBAZ\"\n    stringcase.alphanumcase('_Foo., Bar') # =\u003e'FooBar'\n    stringcase.alphanumcase('Foo_123 Bar!') # =\u003e'Foo123Bar'\n\n\nInstall\n-------\n\n::\n\n    $ pip install stringcase\n\nLicense\n-------\n\nThis software is released under the `MIT License \u003chttps://github.com/okunishinishi/python-stringcase/blob/master/LICENSE\u003e`__.\n\n\nAuthor\n------\n\n-  `Taka Okunishi \u003chttp://okunishitaka.com\u003e`__\n\n.. |build_status_badge| image:: http://img.shields.io/travis/okunishinishi/python-stringcase.svg?style=flat\n   :target: http://travis-ci.org/okunishinishi/python-stringcase\n.. |coverage_badge| image:: http://img.shields.io/coveralls/apeman-repo/apeman-task-contrib-coz.svg?style=flat\n   :target: https://coveralls.io/github/apeman-repo/apeman-task-contrib-coz\n.. |pypi_version_badge| image:: https://img.shields.io/pypi/v/stringcase.svg\n   :target: https://pypi.python.org/pypi/stringcase\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fokunishinishi%2Fpython-stringcase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fokunishinishi%2Fpython-stringcase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fokunishinishi%2Fpython-stringcase/lists"}