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.
uvloop is an ultra fast, drop-in replacement for Python’s built-in asyncio event loop. It is implemented in Cython and uses libuv, making it useful for speeding up asyncio networking workloads. The project provides a `uvloop.run()` helper (or `uvloop.install()`) to start asyncio using the uvloop event loop.
MagicStack/uvloop appears actively maintained, with an upstream push on 2026-05-04 and subsequent recent updates, including v0.22.0 and v0.22.1 (both dated 2025-10-16).
Last release: 2025-10-16
urllib3 is a user-friendly HTTP client library for Python, with features that go beyond the standard library, including thread safety, connection pooling, SSL/TLS verification, retry and redirect helpers, compression support, and proxy support. It is useful for building Python services and tooling that need robust HTTP requests.
The source appears actively maintained, with a very recent upstream push (2026-05-16) and ongoing security and correctness work in the latest tagged update (2.7.0, 2026-05-07).
Last release: 2026-05-07
tzlocal is a Python module that determines your local IANA time zone name, or returns a tzinfo object with the local time zone information on Unix and Windows. It is useful when you need the local timezone details without manually knowing the zoneinfo name, and it provides a get_localzone_name() helper to return only the timezone name.
Maintenance status: The source shows ongoing work up to 2025-07-08 (last upstream push), but given the most recent tagged update appears to be 5.3.1 on 2025-03-05, it is likely quiet and not actively maintained as of 2026-06-09.
Last release: 2025-03-05
tzdata is a Python package that provides IANA time zone data, including zic-compiled binaries. It is intended as a fallback for systems that do not have system time zone data installed (or not in a standard location), and is published as a pip-installable package on PyPI.
Actively maintained: The python/tzdata repo packages and updates the upstream IANA time zone database, with recent changes clearly described in multiple versioned update notes.
Last release: 2026-04-24
typing-inspection provides tools to inspect type annotations at runtime in Python. It is useful for developers who need to understand or validate typing information while the program is running.
The repo appears to be actively maintained, with an upstream push on 2026-01-25. Recent published updates (v0.4.x) continued through 2025-10-01, and there is no evidence of abandonment.
Last release: 2025-10-01
Provides backported and experimental type hints for Python, letting you use newer typing features (like typing.TypeGuard) on older Python versions and try new type system PEPs before they are added to typing. Static type checkers such as mypy and pyright treat items from typing_extensions as equivalent to the corresponding forms in typing.
Actively maintained: GitHub shows an upstream push on 2026-06-03, indicating the project is still receiving updates as of today (2026-06-09).
Last release: 2025-08-25
Starlette is a lightweight ASGI framework and toolkit for building async web services in Python. It provides HTTP and WebSocket support, plus features like startup and shutdown events, background tasks, and common web middleware options (such as CORS and static files), making it useful for production-ready async APIs and web apps.
Kludex/starlette appears actively maintained, with the most recent upstream push on 2026-06-03 and follow-on updates released in late May 2026 (1.2.1 on 2026-05-31, then 1.2.0 on 2026-05-28).
Last release: 2026-06-12
Soup Sieve is a CSS selector library for use with Beautiful Soup 4, designed to select, match, and filter HTML or XML using modern CSS selectors (up through CSS Level 4 drafts, with some limitations). It can replace Beautiful Soup’s built-in select feature and can also be used directly via its API for more controlled parsing.
Active maintenance appears strong, with an upstream push on 2026-05-28 and the latest published update (2.8.4) on 2026-05-24, indicating recent attention to performance and selector safety.
Last release: 2026-05-24
Sniffio is a small Python library that detects which async I/O framework your code is running under, such as Trio or asyncio. It is useful for library authors who want to select the right async integration logic based on the active async environment.
Maintenance status: The repo shows an upstream push on 2026-03-06, which suggests ongoing activity, but the last published updates tag is v1.3.1 on 2024-02-25, so it appears low-cadence rather than actively churning new versions.
Last release: 2024-02-25
Six is a Python 2 and 3 compatibility library that provides utility functions to smooth differences between Python versions, helping you write code that works on both. It supports Python 2.7 and 3.3+ and is distributed as a single Python file that can be copied into a project, with documentation available on Read the Docs.
Maintenance status: The repository appears still maintained, with an upstream push on 2026-02-23 and a recent versioned update (1.17.0) on 2024-12-03 for Python compatibility.
Last release: 2024-12-03
s3transfer is an Amazon S3 Transfer Manager library for Python, used to manage transfers to and from Amazon S3. It is maintained and published by Amazon Web Services, and since it is not currently GA, production use should lock to a minor version due to potential interface changes.
The source (boto/s3transfer) appears actively maintained, with an upstream push on 2026-05-28 and multiple recent version updates (0.18.0 on 2026-05-28, 0.17.1 on 2026-05-26, 0.17.0 on 2026-04-29).
Last release: 2026-05-28
Python-RSA is a pure-Python RSA implementation that supports encryption and decryption, signing and verifying signatures, and key generation (PKCS#1 v1.5). It can be used as a Python library or via the command line, and is distributed via pip as the `rsa` package. The project has been archived, and the maintainer notes it should be used with care due to limitations around timing attacks.
Maintenance status: The upstream project is marked as archived, so despite some later activity, it does not appear to be actively maintained as of today (2026-06-09).
Last release: 2022-07-20
respx is a utility for mocking HTTPX and HTTP Core in Python tests, letting you patch HTTPX and define request routes with mock responses. It is useful for pytest-based testing, including a respx_mock fixture and optional marker to configure mock settings.
Actively maintained, with very recent activity (last upstream push 2026-04-23) and back-to-back updates in April 2026 (0.23.0 on 2026-04-07, 0.23.1 on 2026-04-08).
Last release: 2026-04-08
Python QR Code image generator that lets you generate QR codes as PNG images, SVG, or styled images. It can be used from the command line (including an installed `qr` script) or from Python APIs like `qrcode.make` and the `QRCode` class for more control over size, error correction, and output formatting.
Maintenance status: The GitHub source shows a recent upstream push (2026-03-25), but the provided changelog entries only go up to v8.2 (2025-05-01), so it appears active in the repo while published updates have slowed.
Last release: 2025-05-01
Canonical source for PyYAML, a full-featured YAML processing framework for Python. Useful for parsing and emitting YAML, including optional LibYAML-based fast loader and dumper, and includes a comprehensive test suite.
Actively maintained: The canonical PyYAML GitHub repository shows recent upstream updates, with the latest push on 2025-09-25, which is within the last year of 2026-06-09.
Last release: 2025-09-25
python-pptx is a Python library for creating, reading, and updating PowerPoint (.pptx) files using Open XML. It is useful for generating presentations from dynamic content, such as database queries, analytics output, or JSON payloads, and for extracting text and images from existing slide decks.
Maintenance status: The project shows a clear last upstream push on 2024-08-07, and the newest recorded update (v1.0.2 on 2024-08-06) is from the same week. With ~22 months of no further updates as of 2026-06-09, the source appears quiet/dormant (not actively maintained).
Last release: 2024-08-06
python-docx is a Python library for reading, creating, and updating Microsoft Word 2007+ (.docx) files. It is useful if you need to generate or modify Word documents programmatically, for example creating paragraphs and saving them to a .docx file.
Maintenance status: The repository appears largely quiet, with the most recent upstream push on 2025-06-17 and the latest listed update v1.2.0 on 2025-06-16, about a year before today (2026-06-09), suggesting no strong evidence of active ongoing maintenance cadence.
Last release: 2025-06-16
PyOTP is a Python library for generating and verifying one-time passwords, implementing HOTP (RFC 4226) and TOTP (RFC 6238) for 2FA or MFA in web applications and other systems. It is useful for server-side OTP support, including generating provisioning URIs for OTP authenticator apps (and parsing those URIs) so users can set up credentials by scanning a QR code.
Maintenance: The repo shows an upstream push on 2026-01-03, suggesting ongoing development, but the most recent tagged change in the provided summaries is v2.9.0 on 2023-07-27, so publicly documented updates have been infrequent.
Last release: 2023-07-27