Skip to content

jsguru-git/Flask_File_Server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Flask_File_Server

A Flask File Server

Install Dependencies

> pip install flask

Run a file server

> python fileserver.py

Change file storage path

In the fileserver.py

if __name__ == "__main__":
    dir_path = os.getcwd()
    storage_path = dir_path
    RunFileServer(storage_path, 8000)

Replace storage_path to the absolute path of the folder you want to host files in.

How the file server looks like.

how the file server looks like

About

A Flask File Server

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published