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:

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:

762 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 has very recent activity (last upstream push on 2026-08-03) and the latest published updates are versioned (v2.1.1 on 2026-08-03).

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:

652 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: The repository shows an upstream push on 2026-08-18, and there was a recent 2026-03-19 update (attrs 26.1.0), indicating ongoing development rather than a dormant state.

Last release:

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

603 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, with the last upstream push on 2026-08-27 and multiple SDK updates in August 2026, indicating ongoing development.

Last release:

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

461 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

aiosqlite provides a friendly asynchronous interface to SQLite databases for Python’s AsyncIO. It mirrors the standard sqlite3 connection and cursor APIs with async methods and context managers, letting you run queries and fetch results without blocking other coroutines. It can also replicate many advanced sqlite3 features.

Status:

Actively maintained: Yes. The repo has recent upstream activity (last push 2026-03-01) and there were published updates in late 2025 (v0.22.1 on 2025-12-23).

Last release:

481 watchers
Open

aiosignal is a Python asyncio helper for managing a list of registered asynchronous callbacks (“signals”). It lets you append callbacks, then freeze the signal to prevent changes, and finally trigger all registered callbacks with await sig.send(data). Useful for coordinating event-style callback behavior in asyncio projects, including examples referenced in aiohttp’s advanced web server documentation.

Status:

Maintenance status: Evidence of recent upstream activity (last GitHub push on 2026-06-03), but the most recent tagged update in the provided history is v1.4.0 on 2025-07-03, about 11 months ago, so maintenance looks active in-repo but release cadence is slow.

Last release:

631 watchers
Open

aioitertools provides asynchronous versions of familiar Python itertools and builtins-style helpers, for AsyncIO and mixed iterables (including standard iterators and async iterators). It’s useful when you want one unified, familiar interface for iterating, mapping, chaining, and slicing iterable data in async code.

Status:

Actively maintained (with recent activity): The repository shows an upstream push on 2026-03-01, and there is a recent published update v0.13.0 on 2025-11-06, indicating the project is not dormant as of 2026-06-09.

Last release:

441 watchers
Open

aiohttp is an asynchronous HTTP client and server framework for asyncio and Python. It supports both HTTP and WebSocket use cases, including a Web server with middleware and pluggable routing, useful for building async services and clients.

Status:

Actively maintained: Upstream last push was 2026-07-28, and recent updates (v3.14.3 on 2026-07-22, v3.14.2 on 2026-07-20) indicate ongoing development rather than maintenance mode.

Last release:

753 updates · last 90 days1 watchers
Open

aiohappyeyeballs provides a Happy Eyeballs style connection helper for asyncio use cases where you already have a list of addrinfo and not a DNS name. It is useful when you do DNS caching or resolve names via other mechanisms, such as zeroconf, and want to connect using those pre-resolved addresses.

Status:

Actively maintained: Yes, the repo has had recent updates, with the last upstream push on 2026-07-01, and patch releases continuing into July 2026 (latest shown: v2.7.1 on 2026-07-01).

Last release:

551 updates · last 90 days1 watchers
Open

aiobotocore provides asyncio support for the botocore AWS SDK, using aiohttp to make botocore-style clients work in async Python. It is useful if you want to call Amazon services such as S3 asynchronously, including examples for streaming responses, paginators, and async context manager usage.

Status:

Actively maintained: GitHub updates are recent (latest update 2026-08-22) and there are multiple version updates throughout 2026, indicating ongoing stewardship rather than a dormant or maintenance-only state.

Last release:

803 updates · last 90 days1 watchers
Open

aioboto3 is an async AWS SDK for Python that wraps boto3 resources to run on an aiobotocore async backend. It lets you use higher-level boto3 client and resource APIs in an async manner, useful for Python microservices that need AWS access without blocking the event loop. It uses async context managers for client and resource creation, and includes some async workarounds for boto3 operations like S3 upload and download.

Status:

Maintenance status: The repo shows ongoing work through 2025 (multiple versioned updates), but there have been no shown updates since v15.5.0 on 2025-10-29, and the last upstream push is 2025-12-15, which suggests the project is currently quieter rather than actively shipping frequent changes.

Last release:

521 watchers
Open

uvicorn is a software project that can be found on GitHub. It’s useful for developers looking for the project code and updates via the Kludex/uvicorn GitHub page.

Status:

Actively maintained: Evidence shows very recent activity, including the last upstream push on 2026-08-19 and multiple tagged updates in July to August 2026 (for example, 0.52.2 on 08-13, 0.52.3 on 08-13, 0.52.4 on 08-18).

Last release:

699 updates · last 90 days2 watchers
Open

Tenacity is a Python library (hosted on GitHub) for adding retry logic to code. It’s useful when you need operations to automatically retry after failures, typically to make programs more resilient to transient errors.

Status:

Tenacity (jd/tenacity) appears actively maintained, with an upstream push on 2026-08-06 and recent published updates, most recently 9.2.0 on 2026-08-05.

Last release:

691 updates · last 90 days2 watchers
Open