Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 903 Bytes

README.rst

File metadata and controls

52 lines (29 loc) · 903 Bytes
Project generated with PyScaffold

frtzbxrdr

Check your fritzbox to see who comes and goes in your WiFi network

Installation

$ pip install frtzboxrdr

Usage in code

from frtzboxrdr import Monitor

m = Monitor(user, password)
m.on_device_connected(lambda mac: print(f" Device {mac} connected!"))
m.on_device_disconnected(lambda mac: print(f" Device {mac} disconnected!"))
m.run_forever(5)

Usage as cli

$ frtzboxrdr <user> <password>

Note

This project has been set up using PyScaffold 4.3.1. For details and usage information on PyScaffold see https://pyscaffold.org/.