skillfed

sortedcontainers-stubs

Type stubs for sortedcontainers

sortedcontainers-stubs v2.4.3 1.1M downloads/30d#4,435 on PyPI22
Permissive license Apache-2.0 AGING released

What it is and what it does

sortedcontainers-stubs is a type stub package that teaches type checkers like mypy about the sortedcontainers library's API. The sortedcontainers library provides ordered dict, set, and list data structures that maintain elements sorted by value rather than insertion order, and these types have different requirements and methods than Python's built-in equivalents. Without type stubs, type checkers cannot validate that you're using these types correctly.

The package is maintained separately from sortedcontainers itself because the main library's author chose not to include type annotations in the core codebase. The stubs handle the library's API quirks, including the distinction between regular and key-function variants of SortedDict and SortedSet (which are stub-only types) and SortedKeyList (which exists at runtime). Version numbers track sortedcontainers releases: version 2.4.3 of the stubs supports sortedcontainers 2.x.

Use it for:

  • Enable mypy or other type checkers to catch incorrect usage of SortedDict, SortedSet, or SortedList in your codebase.
  • Get IDE autocomplete and type hints for sortedcontainers methods and their return types.
  • Validate that keys or values passed to sorted containers meet their comparability or hashability requirements at type-check time.
  • Distinguish between SortedDict and SortedKeyDict in type annotations to document whether a key function is used.
  • Maintain type safety in projects that rely on sortedcontainers for performance-critical sorted data structures.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Provides type stubs for the sortedcontainers library, enabling type checkers like mypy to validate code using SortedDict, SortedSet, and SortedList with their specific API requirements.

Yes, if you use sortedcontainers and run mypy or another type checker. The package is low-friction to install, has no known vulnerabilities, and is actively maintained. The aging status reflects infrequent releases rather than abandonment—the repo is not archived and received a commit in April 2025. Install it alongside sortedcontainers to get full type coverage.

Install

sortedcontainers-stubs on PyPI

pip

pip install sortedcontainers-stubs

uv

uv add sortedcontainers-stubs

poetry

poetry add sortedcontainers-stubs

Installing sortedcontainers-stubs

Before you install

Low friction install as a pure stub package with only sortedcontainers and typing-extensions as runtime dependencies. Last commit was recent (2025-04-23), though the package shows aging maintenance status with 478 days since the last release.

License in practice

Apache-2.0 is permissive; you can use this package freely in commercial and private projects with minimal restrictions.

Quickstart

pip install sortedcontainers-stubs

import sortedcontainers
sd: sortedcontainers.SortedDict = sortedcontainers.SortedDict()

Requires Python 3.9 or later; sortedcontainers must also be installed as a runtime dependency.

Verify before relying

  • Whether type stub coverage is complete for all sortedcontainers 2.4.x APIs and edge cases.
  • Whether the stubs correctly distinguish between stub-only types (SortedKeyDict, SortedKeySet) and runtime types (SortedKeyList) in all type-checking scenarios.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (<4.0,>=3.9)
Install friction low — pure-Python wheel
Runtime dependencies 2 — sortedcontainers, typing-extensions
Maintenance aging — 478 days since the last release
Last repo commit
First released
Downloads 1,054,560/month — #4,435 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: sortedcontainers_stubs-2.4.3-py3-none-any.whl

License :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.9Typing :: Stubs Only

Tags

type stubs sortedcontainersmypy sortedcontainers typessorteddict type checkingsortedset type hintssortedlist type stubspython type stubssortedcontainers typing
type-stubstype-checking

More Software Development packages