Skip to content

Releases: clintval/caseless

0.5.0

17 Oct 17:51
5a7d909
Compare
Choose a tag to compare
0.5.0 Pre-release
Pre-release

What's Changed

  • chore: implement the black formatter by @clintval in #2

Full Changelog: 0.4.0...0.5.0

0.4.0

17 Oct 05:56
Compare
Choose a tag to compare
0.4.0 Pre-release
Pre-release

A caseless typed dictionary in Python.

pip install caseless
from caseless import CaselessDict

CaselessDict({"lower": "UPPER"})["LOWER"] == "UPPER"
CaselessDict({"lower": "UPPER"}).get("LOWER") == "UPPER"
CaselessDict({"lower": "value"}) == CaselessDict({"LOWER": "value"})