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:

Almato AI’s Open Graph of IT (OGIT) provides an ontology and documentation to model IT entities and their relationships with business processes and people. It is useful if you want a shared “common language” for IT data and can leverage it through implementations like Apache Jena Fuseki, Apache Tinkerpop, or Cayley, with support for managing IT data via the Bardioc REST API.

Status:

Actively maintained: GitHub indicates an upstream push on 2026-08-26, and the source has multiple recent schema updates in late August 2026 (as recent as 2026-08-26), suggesting active development rather than dormancy.

Last release:

5517 updates · last 90 days1 watchers
Open

Simplifier MCP Server is an MCP (Model Context Protocol) server that lets AI assistants integrate with the Simplifier Low Code Platform. It helps clients browse and use Simplifier connectors, business objects, and data types, and it can execute connector calls and server-side JavaScript business object functions. It supports several connector types including REST, SOAP, SQL, and SAPRFC, and can be used via resources or tools depending on the MCP client.

Status:

Active maintenance is plausible based on the recent upstream push (2026-05-11) and a sequence of tags published on the same day (v0.10.7 to v0.10.3), but the later change history is not shown beyond that date, so the longer-term cadence is unclear.

Last release:

301 watchers
Open

Yarl is a Python 3 URL helper library that provides a handy URL class for parsing and changing URLs. It exposes URL parts like scheme, host, path, and query, and returns new URL objects for manipulations, with automatic encoding and canonical representation. It is useful in projects such as aiohttp where you need consistent URL parsing and construction.

Status:

Actively maintained: The upstream GitHub repo has a recent push (2026-07-22), and yarl has multiple library-focused updates in 2025-2026, including a recent patch on 2026-07-20 (v1.24.5).

Last release:

641 updates · last 90 days1 watchers
Open

XlsxWriter is a Python module for creating Excel 2007+ XLSX files. It helps you generate spreadsheets with features like formatting, formulas, charts, images, and integrations with tools such as Pandas and Polars. It is useful for programmatically producing Excel output from Python code.

Status:

The repository shows ongoing activity, with an upstream push on 2026-03-22, but the most recent listed package updates are from 2025-09-16 (RELEASE_3.2.9), so public updates have a gap of several months as of 2026-06-09.

Last release:

521 watchers
Open

wrapt is a Python module for building decorators, function and object wrappers, and runtime monkey patching. It focuses on preserving decorator introspection and signatures, and uses a C extension for performance-critical parts with a pure Python fallback when needed.

Status:

Actively maintained: GitHub activity and a quick succession of updates through early and late August 2026, with the latest upstream push on 2026-08-30 and a final 2.4.0 update cut from 2.4.0rc5 the same day.

Last release:

4418 updates · last 90 days1 watchers
Open

The websockets library helps you build WebSocket servers and clients in Python, with a coroutine-based API built on asyncio, plus optional threading and Sans I/O implementations. It is useful for building production-quality real-time WebSocket applications, and its documentation is hosted on Read the Docs.

Status:

Actively maintained, with the upstream repo pushed as recently as 2026-08-29, and multiple version updates in 2026 (notably 17.1 on 2026-08-26 and 17.0.1 on 2026-07-31).

Last release:

605 updates · last 90 days1 watchers
Open

watchfiles is a Python package for simple, modern, high performance file watching and code reload. It provides synchronous and async APIs to yield file change events, and includes helpers to run or reload processes when files change. It uses Rust for underlying file system notifications and is useful for development workflows such as hot reloading.

Status:

Actively maintained: The project shows regular updates through 2026 (latest upstream push on 2026-08-09, with the most recent published update v1.2.0 on 2026-05-18), indicating ongoing maintenance rather than dormancy.

Last release:

431 watchers
Open

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.

Status:

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:

561 watchers
Open

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.

Status:

Actively maintained: The repo shows a very recent upstream push (2026-08-10), and the project delivered new updates recently (2.7.0 on 2026-05-07).

Last release:

841 watchers
Open

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.

Status:

Actively maintained: The project has recent activity with multiple updates in June 2026 (latest timestamped update on 2026-06-29), including code diffs and test changes, which suggests ongoing maintenance rather than dormancy.

Last release:

415 updates · last 90 days1 watchers
Open

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.

Status:

Actively maintained: The source has recent updates (latest noted package update 2026.3 on 2026-07-10, and an upstream push on 2026-08-04), indicating ongoing work rather than maintenance mode or dormancy.

Last release:

685 updates · last 90 days1 watchers
Open

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.

Status:

Actively maintained, with the most recent upstream push and corresponding package update on 2026-08-12, and prior updates arriving repeatedly across 2025 and 2026 (not a long dormant gap).

Last release:

551 updates · last 90 days1 watchers
Open

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.

Status:

Actively maintained: GitHub upstream activity is recent (last push 2026-07-08), and the project produced a full stable update plus release candidates in June to July 2026 (4.16.0rc1, rc2, then 4.16.0).

Last release:

843 updates · last 90 days1 watchers
Open

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.

Status:

Actively maintained: The repository shows very recent upstream pushes and frequent tagged updates in August 2026 (for example, updates on 2026-08-08 and an upstream push on 2026-08-11), indicating active maintenance rather than a dormant state.

Last release:

697 updates · last 90 days1 watchers
Open

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.

Status:

Actively maintained: The upstream GitHub push was on 2026-08-07, and there are multiple successive updates in July and August 2026, indicating ongoing maintenance rather than a dormant or maintenance-only state.

Last release:

573 updates · last 90 days1 watchers
Open

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.

Status:

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:

411 watchers
Open

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.

Status:

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:

401 watchers
Open

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.

Status:

Active maintenance: Evidence shows very recent activity (last upstream push on 2026-07-22, plus updates through 0.19.2 on 2026-07-22), indicating the project is actively maintained rather than dormant.

Last release:

733 updates · last 90 days1 watchers
Open