This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import threading | |
import ipywidgets as widgets | |
from IPython.display import display, HTML | |
import datetime | |
# Function to read current network usage | |
def get_network_usage(): | |
try: | |
with open('/proc/net/dev', 'r') as f: |