Access files of a devices in the same network using Python Last Updated : 15 Mar, 2021 Comments Improve Suggest changes Like Article Like Report We have so many ways to Transfer Files from one computer to another in Linux and Ubuntu but there we have to change the permissions of the Apache Folder and then Share the files. But in windows, we cannot share files using Apache so here we have discussed Python Method to Share files between Systems and Mobiles which are connected on the same network. Python is an interpreter, User Friendly, and easy Language. Python has a vast number of modules in it. Here we have used http.server module for Sharing of files between the Systems Connected on the same Network. This module is used for defining HTTP Servers(Web Servers). Servers are software or hardware that processes requests and deliver data to a client. Step-by-Approach:For implementing this you just need a small command to be run in the Command Prompt(cmd). python -m http.server By running the above command a Window Security Alert pop-up may occur. You may choose the option as per your requirement.For accessing the server locally we need to visit http://localhost:8000/ or http://127.0.0.1:8000/ Here we can see all the directories of your local storage along with all the data. You can also access an HTML page, It will be rendered by your web browser as you access it.On the other hand, you can see the activity logs in the command prompt.You can access the other systems which are on the same network just by doing the above process. To turn off, the server just presses Ctrl+c in the command prompt. In this way, one can easily access files in a device in the same network. Comment More infoAdvertise with us Next Article Access files of a devices in the same network using Python nikhiltejatangella Follow Improve Article Tags : Python Python-Networking Practice Tags : python Similar Reads How to Disconnect Devices from Wi-Fi using Scapy in Python? Without permission, disconnecting a device from a Wi-Fi network is against the law and immoral. Sometimes, you might need to check your network's security or address network problems. You may send a de-authentication packet to disconnect devices from Wi-Fi using Scapy, a potent Python packet manipul 5 min read Finding All Wifi-Devices using Scapy Python Scapy is a library supported by both Python2 and Python3. It is used for interacting with the packets on the network. It has several functionalities through which we can easily forge and manipulate the packet. Through scapy module, we can create different network tools like ARP Spoofer, Network Scan 3 min read How to find available WiFi networks using Python? WiFi (Wireless Fidelity) is a wireless technology that allows devices such as computers (laptops and desktops), mobile devices (smartphones and wearables), and other equipment (printers and video cameras) to interface with the Internet. We can find out the names of the WiFi names with the help of Py 2 min read Network Scanning using scapy module - Python Scapy is a library supported by both Python2 and Python3. It is used for interacting with the packets on the network. It has several functionalities through which we can easily forge and manipulate the packet. Through scapy module we can create different network tools like ARP Spoofer, Network Scann 3 min read Wi-Fi QR Code Generator Using Python Prerequisite: Getting Saved Wifi Passwords using Python We know the wireless network is the most common network adapter for today, Because of its supports portability and User friendly. In this article, we will see how we can get the current saved Wi-Fi name and passwords and generate QR code to con 2 min read Python script to get device vendor name from MAC Address Prerequisite: Python Requests A MAC address is a unique identity of a network interface that is used to address the device in a Computer Network. What does MAC Address consist of? A MAC address is made up of 12 hexadecimal digits, 6 octets separated by ':'. There are 6 octets in a MAC address. In th 2 min read Python Script to Monitor Network Connection and saving into Log File In this article, we are going to see how to monitor the network connection and save the log file in Python. The basic ideology of this script is to give real-time information about if the system the script is being run on is connected to an internet connection or not, and save that information into 8 min read View Computer's Important Network Information Using Python While working in a network, we do some troubleshooting with the network or Internet problem. This time we need to check your own system network connection information. We can find the network connection in the Control Panel in Windows. The best way to find this information we can use ipconfig comman 1 min read Python - How to create an ARP Spoofer using Scapy? ARP spoofing is a malicious attack in which the hacker sends falsified ARP in a network. Every node in a connected network has an ARP table through which we identify the IP address and the MAC address of the connected devices. What aim to send an ARP broadcast to find our desired IP which needs to b 6 min read Working with IP Addresses in Python IP (Internet Protocol) -Address is the basic fundamental concept of computer networks which provides the address assigning capabilities to a network. Python provides ipaddress module which is used to validate and categorize the IP address according to their types(IPv4 or IPv6). This module is also u 3 min read Like