Is it possible to view other devices that are on the same network in Python (or any programming language for that matter)?
Edit: For clarification, what I’d like to do (just to start out) is to display a list of devices connected and their local IP addresses. So on my router, it’ll show the info:
family_pc, 192.168.1.2
work_laptop, 192.168.1.3
I’d like to retrieve this info.
What are you trying to do exactly?
nmapis a pretty common tool for scanning networks, which seems like you want to do. There is also a python-nmap package which lets you use nmap directly from within Python with ease.Please be more detailed so we can give you a better answer, cheers.