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:

run_parallel runs an array or generator of callable tasks as fast as possible. It is useful for parallelizing multiple computations implemented as callables, with the README noting that lambdas are not supported yet.

221 watchers
Open

This Python regex module is backwards compatible with the standard re module, while adding extra features such as Unicode support (including full case-folding), additional flags, and options for fuzzy matching and POSIX leftmost longest behavior. It also documents behavior differences between version modes (VERSION0 and VERSION1) and supports multithreading by releasing the GIL during matching in certain cases.

Status:

Actively maintained, with recent repository activity on 2026-06-28 and multiple successive updates through 2026-06, indicating ongoing stewardship rather than a dormant state.

Last release:

484 updates · last 90 days1 watchers
Open

python-react is a Python package for server-side rendering of React components, using data from your Python code. It provides a `render_component` interface that sends a component file path and optional props to a render server, and returns the rendered HTML markup (along with JSON-serialized props and render data). It is useful when you want faster initial page loads and SEO-friendly HTML generated on the server.

Status:

Maintenance status: The repository shows an upstream push on 2025-06-25, but the most recently documented package updates in the provided history are from 2018-10-08 (4.3.0), suggesting the source is effectively quiet/dormant for typical consumers.

Last release:

291 watchers
Open

A Python punycode converter library that turns Punycode domain names into Unicode domain names, and vice versa. It provides a single `punycode.convert()` function for converting either format, with an `ascii_only` option to restrict conversion direction. Useful for DNS and charset conversion workflows involving internationalized domain names.

Status:

The repository appears to be inactive relative to today (2026-06-09), with the last upstream push on 2023-04-02, and the most recent noted update versions from 2023-03-27. This suggests it is quiet or in maintenance mode rather than actively maintained.

Last release:

121 watchers
Open

Python Nanoid is a tiny, secure, URL-friendly unique ID generator for Python. It creates compact IDs using a larger alphabet than UUID, with a default 21-character length, and supports configurable length and alphabet (including an optional non-secure generator).

381 watchers
Open
GitHub

mz is a micro, pure-Python version of the DFCI multiplierz package, with a different namespace (for example, mz.API instead of multiplierz.mzAPI). It is useful for developers who want multiplierz-style functionality in a minimal Python install, especially when working in an Anaconda Python environment.

121 watchers
Open

This source provides a Python package of general-purpose utilities, including decorators, reflection and logging helpers, YAML config, and CLI tools. It also includes project management and git workflow tooling, with shell commands like gy (workflow and self-update) and ly (project creation and project-update).

141 watchers
Open

A Python tool for generating Markdown tables. It is useful if you need to convert tabular data into Markdown syntax for documentation or other text-based outputs.

121 watchers
Open

markdown-extensions is a collection of Markdown extensions. It is useful if you want to add or customize Markdown features beyond the basic syntax for rendering or processing Markdown content.

Status:

The source (jameszhan/markdown-extensions) appears quiet and likely not actively maintained, with the last upstream push on 2023-02-21 and no evidence of further updates since then.

Last release:

121 watchers
Open

A thread-safe least-recently-used (LRU) cache decorator implemented using a double-linked list and a dict (OrderedDict). Useful for memoizing function results with limits (maxsize) and an optional timeout, and it provides an invalidate method for cached entries.

481 watchers
Open

PyScaffold is a Python project template generator that bootstraps high quality Python packages ready to share on PyPI and install with pip. It provides a ready-to-use project structure, including tooling for packaging, tests, and documentation, with a command line flow that creates a new project folder (for example, using `putup`).

Status:

Maintenance status: Evidence suggests the repo is still active, with an upstream push on 2026-05-25, but the most recent tagged update shown in the provided summaries is v4.6 from 2024-09-23 (so maintenance looks present, but not reflected in frequent tagged updates here).

Last release:

421 watchers
Open

A Python API for validating and looking up IANA language tags, based on BCP 47 (RFC 5646) and the IANA language subtag registry. Useful in applications that need to check or resolve language tags according to changing language standards.

Status:

Actively maintained: the most recent upstream push is 2026-05-08, and version updates 1.3.0 (2026-05-07) and 1.3.1 (2026-05-08) were published recently.

Last release:

382 updates · last 90 days1 watchers
Open

keyv is a lightweight Python library that turns SQLite into a fast NoSQL-style key-value database. It provides simple collection-based operations like set, get, update, delete, and searching by values, which is useful for building robust local storage without running a full database system.

201 watchers
Open

pyjson5 is a Python implementation of the JSON5 data format, providing a reader and writer similar to Python’s standard `json` API. It’s useful when you need JSON5 features like JavaScript-style comments, unquoted identifier keys, trailing commas, and single-quoted or multi-line strings (with the project noting it can be very slow).

Status:

The repository appears actively maintained, with an upstream push as recent as 2026-06-24 and new published updates (v0.15.0 on 2026-06-19, v0.14.0 on 2026-03-27).

Last release:

502 updates · last 90 days1 watchers
Open

A Python implementation of the JOSE (Javascript Object Signing and Encryption) framework, providing support for JSON Web Tokens (JWTs) using JWS (signatures) and JWE (encrypted claims). Useful for securely transferring claims such as authorization information between parties, including the ability to authenticate using JWS and keep claims opaque via JWE (with a subset of recommended algorithms).

Status:

The repository appears quiet/dormant. The latest tagged update is 0.2.2 from 2015-01-15, and the upstream push was last seen on 2024-05-30, which indicates no recent, ongoing update activity in the tagged history.

Last release:

241 watchers
Open

Jiti is an interface-first Python tool that lets you declare typed function or method stubs, and then generates real implementations the first time they are called. It validates generated code against ruff, type checking, and your tests, caches the results for later calls, and can “merge” the generated code back into your source to remove the jiti dependency.

Status:

Actively maintained, with recent GitHub pushes on 2026-06-10 to 2026-06-12 and multiple version updates (v1.2.0 through v1.5.1) clustered within the same week.

Last release:

4812 updates · last 90 days1 watchers
Open

This is a small Python library that provides a function to check whether a value is a string. It is useful for simple type validation, such as distinguishing between string inputs and non-string values.

251 watchers
Open

A command-line tool for quickly grabbing common .gitignore files for a specified language. It can download a ready to use .gitignore file (for example, by running a command like `ignore python`).

121 watchers
Open