mirror of
https://github.com/KeksPirates/SoftwareManager.git
synced 2026-08-03 17:39:42 +02:00
10 lines
234 B
Python
10 lines
234 B
Python
from core.utils.general.logs import consoleLog
|
|
import psutil
|
|
|
|
|
|
|
|
def get_net_interfaces():
|
|
addrs = psutil.net_if_addrs()
|
|
for interface in addrs.keys():
|
|
consoleLog(f"Found Interface: {interface}")
|
|
return addrs.keys() |