Check your fritzbox to see who comes and goes in your WiFi network
$ pip install frtzboxrdr
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)
$ frtzboxrdr <user> <password>
This project has been set up using PyScaffold 4.3.1. For details and usage information on PyScaffold see https://pyscaffold.org/.