#!/usr/bin/env python3
+# © Copyright 2021-2022, Scott Gasch
+
"""This is a module dealing with trying to guess a person's location
based on the location of certain devices (e.g. phones, laptops)
belonging to that person. It works with networks I run that log
-device MAC addresses active."""
+device MAC addresses active.
+
+"""
import datetime
import logging
try:
raw = cmd(
"ssh scott@meerkat.cabin 'cat /home/scott/cron/persisted_mac_addresses.txt'",
- timeout_seconds=10.0,
+ timeout_seconds=20.0,
)
self.parse_raw_macs_file(raw, Location.CABIN)
except Exception as e: