Skip to main content

A set that works with both hashable and non-hashable elements

Project description

All Purpose Set

Note: This document is best viewed on github. Pypi's headers are all caps which presents inaccurate information"


Table of Contents


What is it?

  • A set which doesn't require hashable contents

Why create it?

  • I often have a need to store non-hashable contents in a set. For example storing a dict isn't possible with the builtin set.

    # doesn't work
    someDict = { "key": "value" }
    someSet = { someDict }
    

Simple usage

from all_purpose_set import ApSet

someDict = { "key": "value" }
someSet = ApSet([someDict])

print(someDict in someSet) # prints True

See also


Api

Note: This api is young and subject to change quite a bit. There also may be functionality present in the builtin set which this set doesn't cover. I'm willing to add it so please just raise a github issue or PR with details.

class ApSet([a list])

  • all methods return self unless specified otherwise
  • iterates in the order of insertion
  • currently the internal methods implemented are
    • __contains__
    • __iter__
    • __len__
add(something)
clear()
has(something) => bool
  • a function alternative to key in aSet
remove(something)
  • raises a KeyError if the element doesn't exist

Test

#
# you must have poetry installed
#
$ poetry shell
$ poetry install
$ python runTests.py

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

all_purpose_set-0.1.2.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

all_purpose_set-0.1.2-py3-none-any.whl (26.6 kB view hashes)

Uploaded Python 3

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