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:

h11 is a pure-Python, bring-your-own-I/O HTTP/1.1 library that implements the basics of framing and header handling. It provides a connection state API for servers and clients, where you feed in network bytes to produce HTTP events and send event objects back as bytes. This is useful if you want to build HTTP functionality without using a higher-level HTTP client or server framework.

Status:

Maintenance status: The last recorded upstream push and recent update (v0.16.0, and v0.15.0) was on 2025-04-24, which is over a year ago relative to 2026-06-09, so the source appears quiet/dormant rather than actively maintained.

Last release: 2025-04-24

441 watchers
Open

Greenlet is a lightweight in-process concurrent programming library that provides micro-threads called greenlets. It is implemented as a C extension for the regular CPython interpreter, and is useful when you need fine-grained control over exactly when code runs, including building advanced control flow structures like generator-like coroutines.

Status:

The python-greenlet/greenlet GitHub source appears actively maintained, with frequent recent updates (most notably tags on 2026-05-20, 2026-04-27, 2026-04-08, and 2026-02-20) and a very recent upstream push on 2026-05-20.

Last release: 2026-05-20

523 updates · last 90 days1 watchers
Open

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: 2025-10-06

641 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: 2022-11-08

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: 2026-03-26

621 updates · last 90 days1 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: 2026-04-14

431 updates · last 90 days1 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: 2025-09-07

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: 2024-01-14

391 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: 2025-10-30

551 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: The source has very recent upstream activity (last push on 2026-06-10) and continues to publish versioned updates through 2026, including 48.0.1 on 2026-06-09.

Last release: 2026-06-12

826 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: 2022-10-25

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: GitHub shows the upstream has recent activity (last push 2026-05-27), with multiple Click 8.x updates in 2026 (8.4.1, 8.4.0, 8.3.3, 8.3.2).

Last release: 2026-05-22

754 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:

Actively maintained: The repo shows an upstream push on 2026-06-09, which suggests ongoing development, though the most recently summarized version update is v2.0.0 on 2025-09-08.

Last release: 2025-09-08

531 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: The upstream repo shows a recent push (2026-06-03), and the most recent published update in this stream is 2026-05-20, which is only a few weeks before today (2026-06-11).

Last release: 2026-05-20

612 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: 2026-03-19

881 updates · last 90 days1 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 (likely), based on the upstream GitHub push on 2026-04-06 and multiple recent fix-oriented updates in the 3.11.x line (most recently shown: 3.11.2 on 2025-12-22).

Last release: 2025-12-22

521 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: The source shows very recent activity (last upstream push 2026-05-17) and multiple versioned updates over 2025-2026 (4.9.0 through 4.13.0), indicating ongoing development rather than maintenance-only mode.

Last release: 2026-03-24

561 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: GitHub activity is very recent (last upstream push was 2026-06-09), and there are multiple back-to-back updates in the last few days (v0.109.1, v0.109.0, v0.108.0, v0.107.1, v0.107.0).

Last release: 2026-06-09

6923 updates · last 90 days1 watchers
Open