Skip to main content

A synchronous one-to-one mapping type

Project description

gloss

Gloss (short for glossary) is a different kind of dictionary. All values also automatically become keys and so can be looked up in the Gloss to find its corresponding 'key'. This makes it easy to lookup and maintain one-to-one relationships such as a label to a certain magnitude.

Gloss is a MutableMapping and supports all the same methods that dict does.

Examples

from gloss import Gloss

example = Gloss()
example["stdin"] = 0
example.update({"stdout": 1, "stderr": 2})
print(example)
#Gloss({"stdin": 0, "stdout": 1, "stderr": 2})
print(example[1], "goes to" example["stderr"])
#stdout goes to 2
example[3] = "config.toml"
example[1] = "shell pipe"
print(example)
#Gloss({"stdin": 0, "stderr": 2, "config.toml": 3, "shell pipe": 1})
print([fd_or_desc for fd_or_desc in example])
#["stdin", "stderr", "config.toml", "shell pipe", 0, 1, 2, 3]

As both the key and value are gettable items from the Gloss and are indistinguishable once added, term is the preferred name for items in a Gloss, and a term pair is the 1-1 mapping each term belongs to.

Differences from Enum

Enum is a wonderful data structure that also supports 1-1 mappings and it's already built into Python. However, these limitations of Enums are solved by Gloss:

  • enum members are static. They are defined all at once in the class and their values cannot change. A Gloss on the other hand can be added to, altered, even have members deleted or popped, all at runtime
  • Accessing Enum member names and their values are different operations. Looking up a member by name is done with either dot dereference or getitem; looking up a member by value is done with a call. With a Gloss you don't have to know which side of the mapping your key is on (if there even is a distinction to the mapping), it is all done by getitem
  • One side of an enum mapping must be a string. Because member names are attributes they must follow Python identifier naming rules. In a Gloss, all terms may be any hashable object

Differences from Dict

While the classic dict solves some of the limitations of using an Enum, primarily being mutable at runtime, it is not a 1-1 mapping.

  • enforcing uniqueness among dict values is a lot of extra work
  • looking up a dict value is O(n). Therefore so is updating, deleting, popping, etc that value. Searching a Gloss for any term is O(1) time
  • updating any term in a Gloss takes a single operation

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gloss-1.3.0.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

gloss-1.3.0-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file gloss-1.3.0.tar.gz.

File metadata

  • Download URL: gloss-1.3.0.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.3

File hashes

Hashes for gloss-1.3.0.tar.gz
Algorithm Hash digest
SHA256 9c99887aa36f16a8bd190deeb2b47dfa850d4bff1c3a45056b16bd64631fcd44
MD5 5898604ea30db2c1ebb0e69dcbf7feba
BLAKE2b-256 0305d7599dcf5ab73d00e6bca16c51e80b42e058502ccb296a1f1ddbe6d3fb2e

See more details on using hashes here.

File details

Details for the file gloss-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: gloss-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 4.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.3

File hashes

Hashes for gloss-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3621d9b0e904ce6c4e9d6691ca63d4c7f6696e8d1a4611c439faba481956a150
MD5 fda3f7691d2f4fcb70e82df3e97976f7
BLAKE2b-256 a6767bd0f1515f147787bd662baff6a840d9d96ad844717fbec5365bd0621185

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page