skillfed

etelemetry

Etelemetry python client API

etelemetry v0.3.1 511.8K downloads/30d#6,257 on PyPI4
Permissive license Apache License, 2.0 DORMANT released

What it is and what it does

Etelemetry is a client library for communicating with a remote telemetry server to fetch project metadata, specifically current version numbers and lists of known bad versions. It is designed to be embedded in other Python projects so they can notify users at runtime if they are running an outdated or problematic release.

The package provides two main entry points: `get_project()` to retrieve raw version data for a project identified by its GitHub organization and name (e.g., "nipy/nipype"), and `check_available_version()` to compare a user's current version against the remote record and print human-readable warnings if an update is available or if the version is flagged as buggy. Projects that adopt etelemetry typically call it on import in interactive environments (notebooks, REPLs) to alert users without disrupting normal execution.

Use it for:

  • Embed in a scientific Python package to notify users of critical bug-fix releases at import time.
  • Check for deprecated versions in a Jupyter notebook or IPython session to warn about known issues.
  • Query the etelemetry server in a CI/CD pipeline to validate that a deployed version is not on a blocklist.
  • Build a version-monitoring dashboard that polls etelemetry for multiple projects to track adoption and flag problems.
  • Integrate into a package manager or installer to warn users before installing a known-bad release.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Etelemetry is a lightweight Python client that queries a remote server for project version information and checks whether the current version is outdated or flagged as problematic.

Yes, if you maintain a Python package and want a lightweight, zero-configuration way to notify users of critical updates or known bugs at runtime. The permissive license and low dependency footprint make it easy to embed. However, be aware the package is dormant (last release over a year ago) and the remote server's availability and long-term support are not documented; verify the etelemetry infrastructure is stable for your use case before relying on it in production.

Install

etelemetry on PyPI

pip

pip install etelemetry

uv

uv add etelemetry

poetry

poetry add etelemetry

Installing etelemetry

Before you install

Low install friction with three lightweight dependencies (packaging, requests, ci-info). The package is dormant—last release was 2023-10-13, over a year ago—but the repository remains active and there are no known security vulnerabilities.

License in practice

Licensed under Apache License 2.0 (permissive), which allows commercial use, modification, and distribution with minimal restrictions.

Quickstart

pip install etelemetry

import etelemetry
result = etelemetry.get_project("nipy/nipype")
print(result)  # {'version': '1.4.2', 'bad_versions': [...]}

# Or check current version against remote:
etelemetry.check_available_version("nipy/nipype", "1.2.1")

Requires Python 3.7 or later. The remote server must be accessible and the target project must be registered with etelemetry.

Verify before relying

  • Whether the etelemetry server is actively maintained and reliably available for queries.
  • Performance characteristics when querying many projects or in high-frequency scenarios.
  • Whether the package works with private or self-hosted version registries.

Package facts

License Apache License, 2.0 (permissive)
Python support supports the current Python release (>=3.7)
Install friction low — pure-Python wheel
Runtime dependencies 3 — packaging, requests, ci-info
Maintenance dormant — 1,036 days since the last release
Last repo commit
First released
Downloads 511,801/month — #6,257 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: etelemetry-0.3.1-py3-none-any.whl

Development Status :: 3 - AlphaIntended Audience :: Science/ResearchLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3.10Programming Language :: Python :: 3.7Programming Language :: Python :: 3.8Programming Language :: Python :: 3.9

Tags

version checking clientproject telemetryremote version lookupbad version detectionupdate notificationgithub project version infodeprecation warnings
version-checkingtelemetry-clientscientific-python

More Utilities packages