Explore tracked sources

Every software and developer-update source on DevUpdate.io, contributed by the community. Browse without an account, or sign in to add any of these to your dashboard.

Descriptions and status summaries are generated by an AI from publicly available data. They may not reflect the current state of a project. More on AI-extracted content. Project owners can request a correction or removal by emailing info@devupdate.io.

Source:Sort:

FrozenList provides a list-like data structure in Python that implements collections.abc.MutableSequence and can be made immutable. It is useful when you need normal list operations until you call freeze, after which modifications raise RuntimeError, and only the frozen instance can be hashed.

Status:

The project appears to be actively developed, with an upstream push on 2026-06-08, but the most recently documented published updates in the provided history are older (v1.8.0 dated 2025-10-06).

Last release:

661 watchers
Open

filetype.py is a small, dependency-free Python package that infers a file type and MIME type by checking a file’s magic number signatures. It also supports getting an inferred extension, discovering types by extension or MIME, and can work from the first 261 bytes of a file or buffer.

Status:

The source (h2non/filetype.py) appears quiet or in maintenance mode, with the most recent upstream push on 2025-05-02 and the last publicly described tagged update in 2022-11-08 (v1.2.0), which is well over 12 months ago relative to 2026-06-09.

Last release:

391 watchers
Open

Pure-Python ECC implementation providing ECDSA signature creation and verification, ECDH shared secret key agreement, and EdDSA support (Ed25519 and Ed448). Useful for generating key pairs, signing and verifying messages, and deriving a shared secret from exchanged public keys.

Status:

The source appears actively maintained, with a recent GitHub push on 2026-03-26 and a latest update (python-ecdsa 0.19.2) described as a security and robustness improvement to DER parsing.

Last release:

591 watchers
Open

docstring_parser is a Python utility for parsing docstrings written in multiple formats. It supports ReST, Google, Numpydoc-style, and Epydoc docstrings, and helps extract structured fields like parameter and exception details from documentation text.

Status:

The source appears actively maintained, with recent activity including an upstream push on 2026-04-14 and a new tagged update 0.18.0 on the same date.

Last release:

401 watchers
Open

dnspython is a DNS toolkit for Python that supports most DNS record types. It is useful for making DNS queries, performing zone transfers, and sending dynamic updates, with support for TSIG-authenticated messages and EDNS0, plus high- and low-level APIs. The project also offers optional integrations such as DNS-over-HTTPS, DNS-over-TLS, DNS-over-QUIC, DNSSEC, IDNA, and async support (asyncio and Trio).

Status:

Active maintenance: The repo shows an upstream push on 2026-05-26, which strongly suggests the project is still actively worked on (even though the provided “recent updates” list stops at v2.8.0 in 2025-09-07).

Last release:

601 watchers
Open

Distro is a Python library that provides OS distribution information, such as a reliable machine readable ID, version, and codename. It is a recommended replacement for Python’s removed platform.linux_distribution(), and it can also be used via a command line interface. It supports Linux and BSD based systems, using data sources like /etc/os-release and related release files.

Status:

Maintenance status: The repo shows an upstream push as recently as 2025-11-14, which suggests ongoing maintenance, even though the most recently listed tagged update (v1.9.0) is from 2024-01-14.

Last release:

471 watchers
Open

Python @deprecated decorator for marking old classes, functions, or methods as deprecated. Useful when you want developers to see warnings and optionally provide a reason message, helping guide them to newer alternatives.

Status:

The repo appears maintained rather than dormant, with the last upstream push on 2026-04-22, though the most recent tagged updates in the provided list are from 2025-10-30 (v1.3.1).

Last release:

451 watchers
Open

cryptography is a Python package that provides cryptographic primitives and high-level recipes for developers, aiming to be a “cryptographic standard library.” It supports Python 3.9+ and PyPy3 7.3.11+, including tools for symmetric ciphers, message digests, and key derivation functions. It’s useful if you need Python-friendly building blocks or ready-to-use patterns for common cryptographic operations.

Status:

Actively maintained: GitHub activity is very recent (upstream push on 2026-06-17), and the project has shipped multiple recent updates (49.0.0 on 2026-06-12, 48.0.1 on 2026-06-09, and earlier in May and April).

Last release:

823 updates · last 90 days1 watchers
Open

Colorama is a Python utility for making ANSI escape sequences work in colored terminal output on MS Windows. It wraps or configures stdout and stderr to strip ANSI sequences and convert them into the appropriate Win32 calls, while doing nothing on other platforms. It is useful for cross-platform apps that want to print colored text and cursor positioning using the same ANSI sequences on Windows and Unix-like systems.

Status:

Maintenance status: GitHub shows a recent upstream push on 2026-05-13, but the most recent versioned updates in the provided history are from 2022-10-25 (0.4.6), suggesting active codebase upkeep but infrequent published updates.

Last release:

481 watchers
Open

Click is a Python package for creating command line interfaces in a composable way with as little code as necessary. It supports features like arbitrary nesting of commands, automatic help page generation, and lazy loading of subcommands at runtime. It is useful for building configurable CLI tools quickly while encouraging a consistent CLI API.

Status:

Actively maintained: The upstream push is as recent as 2026-07-01, and the package has multiple updates in 2026 (8.4.0, 8.4.1, 8.4.2), with the newest summary dated 2026-06-26, indicating ongoing development rather than maintenance mode.

Last release:

753 updates · last 90 days1 watchers
Open

CFFI is a Foreign Function Interface package that lets Python call C code and C libraries. It provides documentation on how to use the interface, and the project is maintained with public code, releases, and tests.

Status:

Active maintenance: the repo shows recent updates (last upstream push 2026-07-06) including v2.1.0 on 2026-07-06, indicating ongoing development rather than maintenance mode.

Last release:

532 updates · last 90 days1 watchers
Open

Certifi is a Python package that provides a curated bundle of Mozilla Root Certificates for validating SSL certificates and verifying the identity of TLS hosts. It is useful when you want a reliable, portable CA trust store for Python applications, and it does not support adding or modifying the certificates, so alternate trust should come from other tooling.

Status:

Actively maintained, with very recent updates (latest on 2026-07-22, and multiple updates in 2025-2026), and an upstream GitHub push occurring within about a day of the newest published update.

Last release:

653 updates · last 90 days1 watchers
Open

attrs is a Python package for building classes with less boilerplate. It provides decorators and declarative attribute definitions, generating common object behaviors like initialization, readable repr, and equality checks, so you can write concise, correct class code without dull dunder method work.

Status:

Actively maintained: Upstream has a very recent GitHub push (2026-05-11), and the project has continued to publish updates through 26.1.0 (2026-03-19), indicating ongoing development rather than maintenance-only mode.

Last release:

871 watchers
Open

APScheduler is a Python task scheduler and task queue system for running jobs on schedules such as cron-style, interval-based, calendar-based, or one-off triggers. It supports persistent storage and shared schedules across multiple scheduler and worker instances, and can be used in both synchronous and asynchronous applications. Useful for automation and background job scheduling, including deployments that need scaling and high availability.

Status:

Actively maintained: Evidence suggests ongoing maintenance, with the latest upstream push on 2026-07-01 and a recent package update 3.11.3 on 2026-06-28.

Last release:

561 updates · last 90 days1 watchers
Open

AnyIO is a high level asynchronous networking and concurrency library for Python that runs on top of either Trio or asyncio. It provides Trio-like structured concurrency (task groups) plus networking primitives for TCP, UDP, and UNIX sockets, with an API that lets code run unmodified on either backend.

Status:

Actively maintained: Recent GitHub pushes and multiple releases in 2026 indicate ongoing maintenance (last upstream push on 2026-07-14, plus updates 4.14.1 on 2026-06-24 and 4.14.2 on 2026-07-12).

Last release:

593 updates · last 90 days1 watchers
Open

Claude SDK for Python, which lets Python applications access the Claude API. It includes installation via pip and example code for creating messages and calling Claude models, with full API SDK documentation available on platform.claude.com.

Status:

Actively maintained: Yes, the repo shows recent upstream pushes (latest upstream push on 2026-07-28) and multiple SDK updates released in late July 2026.

Last release:

6931 updates · last 90 days1 watchers
Open

annotated-types provides reusable metadata objects (for use with `typing.Annotated`) that describe common data constraints like numeric bounds (Gt, Ge, Lt, Le), interval bounds, length limits (Len, MinLen, MaxLen), timezone restrictions, units, and runtime-check predicates. It’s useful for standardizing constraint annotations so other tools and libraries can interpret them consistently without treating `Annotated[T, x]` differently from `T`.

Status:

Actively maintained, with the most recent upstream push on 2026-07-24 and the latest documented update (v0.8.0) on 2026-07-23.

Last release:

481 updates · last 90 days1 watchers
Open

annotated-doc is a small Python library that lets you attach documentation strings directly to function parameters, class attributes, return types, and variables using typing.Annotated. It is useful for keeping symbol documentation in code and enabling tools to extract consistent parameter docs for reference-style documentation, including support used by FastAPI reference documentation.

Status:

The source appears actively maintained, with very recent activity (last upstream push on 2026-07-28) and a new update version 0.0.5 released the same day.

Last release:

551 updates · last 90 days1 watchers
Open