Skip to content

Instantly share code, notes, and snippets.

View e1ectr0cut1e's full-sized avatar
👾

Hex e1ectr0cut1e

👾
View GitHub Profile
@e1ectr0cut1e
e1ectr0cut1e / keenetic_rci.py
Last active March 25, 2026 13:08 — forked from ancientGlider/keenetic_auth.py
Keenetic REST API Class with automatic auth handling (Python)
import hashlib
import requests
class KeeneticRci:
def __init__(self, address, username, password):
self.address = address
self.username = username
self.password = password