Post

what is my local ip address?

what is my local ip address?
1
ifconfig | grep 192

Hosting files locally

You can then host files using python’s http module

1
$ python3 -m http.server

Any device on your LAN (i.e connected to the same wifi network) can then connect to http://YOUR_LOCAL_IP (http not https)

This post is licensed under CC BY 4.0 by the author.