skillfed

pynetgear

Access Netgear routers using their SOAP API

pynetgear v0.10.10 74.4K downloads/30d#14,840 on PyPI244
Permissive license MIT DORMANT released

What it is and what it does

pyNetgear is a Python client for Netgear routers that communicates via the SOAP API used by the NETGEAR Genie app. It was built by reverse-engineering those requests and provides methods to log in, enumerate connected devices with signal strength and MAC addresses, retrieve traffic meter data, and block or allow specific devices from network access.

The package depends only on requests and installs as a pure-Python wheel, making setup simple. It supports a wide range of Netgear router models (R-series, WN-series, Orbi, and others documented in the description). Some operations like device blocking require remote management to be enabled in the router's admin interface, and optional parameters allow customization of host, port, SSL, and credentials.

Use it for:

  • Monitor which devices are currently connected to your Netgear router and their signal strength from a Python script.
  • Programmatically block or allow specific devices (by MAC address) from accessing the network based on custom logic.
  • Retrieve traffic meter statistics from the router to track bandwidth usage over time.
  • Build a home automation or network monitoring dashboard that queries router state without manual web interface access.
  • Integrate router device discovery into network inventory or device management tools.

Worth the install?

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

pyNetgear provides a Python API to communicate with Netgear routers via their SOAP interface, enabling you to query connected devices, manage traffic metrics, and control device access.

Yes, if you own a compatible Netgear router and need programmatic access to its device list or traffic metrics. The low install friction, permissive license, and stable API make it a practical choice for home automation or network monitoring. However, the dormant maintenance status (last update 2023-09-12) means you should verify compatibility with your specific router model and firmware before relying on it for critical tasks.

Install

pynetgear on PyPI

pip

pip install pynetgear

uv

uv add pynetgear

poetry

poetry add pynetgear

Installing pynetgear

Before you install

Installation is straightforward with low friction—a single pure-Python wheel with only requests as a runtime dependency. The package is dormant (last release 2023-09-12, 1067 days ago) but remains stable and archived repository shows no active development.

License in practice

MIT license is permissive, allowing use in commercial and private projects with minimal restrictions.

Quickstart

pip install pynetgear

from pynetgear import Netgear

netgear = Netgear(password='your_password')
for device in netgear.get_attached_devices():
    print(device)

Requires network access to a compatible Netgear router; remote management must be enabled on the router for device blocking operations.

Verify before relying

  • Whether the SOAP API remains stable across current Netgear router firmware versions given the package's dormant status.
  • Compatibility with routers released after 2023, as the supported router list in the description may be outdated.

Package facts

License MIT (permissive)
Python support not specified
Install friction low — pure-Python wheel
Runtime dependencies 1 — requests
Maintenance dormant — 1,067 days since the last release
Last repo commit
First released
Downloads 74,417/month — #14,840 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: pynetgear-0.10.10-py3-none-any.whl

Tags

netgear router python apicontrol netgear router programmaticallyquery connected devices routernetgear soap api clientrouter device management pythonnetgear genie apiblock allow devices router
router-managementhome-automationnetwork-monitoring

More Networking packages