🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

non-hashing-collections

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

non-hashing-collections

Includes implementations of Python collection types that don't require hashability.

0.1.dev0
PyPI
Maintainers
1

Non-Hashing Python Collections

As well all know, hash-based collections are a scourge upon the world (/s), so this library contains implementations of common Python collections that would usually require hashability of its elements, but without that requirement.

So... Why?

Python's set, dict, and a few other collections require their elements to be hashable, but sometimes types are not hashable. Perhaps they could be, and even should be, but they aren't. This library allows you use such types in typically hashed collections.

Also these implementations are natually insertion order preserving.

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts