{"id":23015930,"url":"https://github.com/pywbem/nocaselist","last_synced_at":"2025-08-14T07:32:19.460Z","repository":{"id":37830290,"uuid":"280568746","full_name":"pywbem/nocaselist","owner":"pywbem","description":"A case-insensitive list for Python","archived":false,"fork":false,"pushed_at":"2024-10-28T09:51:55.000Z","size":307,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-28T15:42:18.872Z","etag":null,"topics":["case-insensitive","list","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pywbem.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-18T02:50:32.000Z","updated_at":"2024-10-28T09:51:58.000Z","dependencies_parsed_at":"2024-06-02T08:34:23.691Z","dependency_job_id":"22353b51-cfda-4f08-9975-f280bb552100","html_url":"https://github.com/pywbem/nocaselist","commit_stats":{"total_commits":108,"total_committers":2,"mean_commits":54.0,"dds":0.0092592592592593,"last_synced_commit":"cdd615c570cc59ed10c2ac8975a92b4a0a3f1375"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pywbem%2Fnocaselist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pywbem%2Fnocaselist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pywbem%2Fnocaselist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pywbem%2Fnocaselist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pywbem","download_url":"https://codeload.github.com/pywbem/nocaselist/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":229810609,"owners_count":18127675,"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-insensitive","list","python"],"created_at":"2024-12-15T11:13:57.335Z","updated_at":"2024-12-15T11:13:57.894Z","avatar_url":"https://github.com/pywbem.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# nocaselist - A case-insensitive list for Python\n\n[![Version on Pypi](https://img.shields.io/pypi/v/nocaselist.svg)](https://pypi.python.org/pypi/nocaselist/)\n[![Test status (master)](https://github.com/pywbem/nocaselist/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/pywbem/nocaselist/actions/workflows/test.yml?query=branch%3Amaster)\n[![Docs status (master)](https://readthedocs.org/projects/nocaselist/badge/?version=master)](https://readthedocs.org/projects/nocaselist/builds/)\n[![Test coverage (master)](https://coveralls.io/repos/github/pywbem/nocaselist/badge.svg?branch=master)](https://coveralls.io/github/pywbem/nocaselist?branch=master)\n\n# Overview\n\nClass\n[NocaseList](https://nocaselist.readthedocs.io/en/master/reference.html#nocaselist.NocaseList)\nis a case-insensitive list that preserves the lexical case of its items.\n\nExample:\n\n    $ python\n    \u003e\u003e\u003e from nocaselist import NocaseList\n\n    \u003e\u003e\u003e list1 = NocaseList(['Alpha', 'Beta'])\n\n    \u003e\u003e\u003e print(list1)  # Any access is case-preserving\n    ['Alpha', 'Beta']\n\n    \u003e\u003e\u003e 'ALPHA' in list1  # Any lookup or comparison is case-insensitive\n    True\n\nThe\n[NocaseList](https://nocaselist.readthedocs.io/en/master/reference.html#nocaselist.NocaseList)\nclass supports the functionality of the built-in\n[list class of Python 3.8](https://docs.python.org/3.8/library/stdtypes.html#list)\non all Python versions it supports (except for being case-insensitive, of\ncourse).\n\nThe case-insensitivity is achieved by matching any key values as their\ncasefolded values. By default, the casefolding is performed with\n[str.casefold()](https://docs.python.org/3/library/stdtypes.html#str.casefold)\nfor unicode string keys and with\n[bytes.lower()](https://docs.python.org/3/library/stdtypes.html#bytes.lower)\nfor byte string keys. The default casefolding can be overridden with a\nuser-defined casefold method.\n\n# Installation\n\nTo install the latest released version of the nocaselist package into\nyour active Python environment:\n\n    $ pip install nocaselist\n\nThe nocaselist package has no prerequisite Python packages.\n\nFor more details and alternative ways to install, see\n[Installation](https://nocaselist.readthedocs.io/en/master/intro.html#installation).\n\n# Documentation\n\n- [Documentation](https://nocaselist.readthedocs.io/en/master/)\n\n# Change History\n\n- [Change history](https://nocaselist.readthedocs.io/en/master/changes.html)\n\n# Contributing\n\nFor information on how to contribute to the nocaselist project, see\n[Contributing](https://nocaselist.readthedocs.io/en/master/development.html#contributing).\n\n# License\n\nThe nocaselist project is provided under the [Apache Software License\n2.0](https://raw.githubusercontent.com/pywbem/nocaselist/master/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpywbem%2Fnocaselist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpywbem%2Fnocaselist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpywbem%2Fnocaselist/lists"}