You can enable quick file sharing using python3 by activating its built-in internal webserver
python3 -m http.server
The default webserver will listen to port 8000, you can change to any port above 1024 without root privileges by specifying the port number after the command:
python3 -m http.server 9090