Get the current time in microseconds.
()
| 17 | |
| 18 | |
| 19 | def _now_us() -> int: |
| 20 | """Get the current time in microseconds.""" |
| 21 | return int(time.time() * 1_000_000) |
| 22 | |
| 23 | |
| 24 | def record_interaction(ip: str) -> None: |
no outgoing calls
no test coverage detected
searching dependent graphs…