Skip to content

Instantly share code, notes, and snippets.

@alexlmiller
alexlmiller / udm_wlan_control.py
Last active April 1, 2023 12:11 — forked from joestump/unifi.py
A simply Python Client for enabling, disabling, and checking status of Wifi Networks on a Unifi Dream Machine (or other UnifiOS)
import requests
import json
import urllib3
import argparse
import udm_wlan_secrets
UNIFI_URL = udm_wlan_secrets.unifi_url
UNIFI_USER = udm_wlan_secrets.unifi_username
UNIFI_PASS = udm_wlan_secrets.unifi_password