Giter Club home page Giter Club logo

micro_file_server's Introduction

badge

Table of Contents

  1. Description
  2. Features:
  3. Dependencies
  4. Usage
  5. Default settings
  6. Screenshot
  7. Check hash

Description

Create Web server from current directory.

HTTP and HTTPS server that allow to download and upload files.

Micro autoindex and file hosting server with one Flask framework dependence in single file.

Features:

Allow to transfer files between systems easily and safely.

  • ftp-like design
  • ability to upload file
  • protection from folder escaping and injecting
  • size calculation
  • flexible configuration with enironmental variables
  • optional basic file type recognition: text, image, audio, video
  • easy viewing text files by mime type faking.
  • hiding files and directories that starts with '.' dot character.
  • HTTPS/TLS/SSL supported with cert and key files or with dynamic "adhoc" key.
  • all in a single file: .py or .exe.

Dependencies

Python version >= 3.10

Flask >= 2.3.2 pip install flask

cryptography >= 41.0.4 pip install cryptography optionally required for TLS --cert

Lower version may work as well.

Usage

export FLASK_RUN_HOST=0.0.0.0 FLASK_RUN_PORT=8080
export FLASK_BASE_DIR='/home/user'
python -m micro_file_server

or

python -m micro_file_server --host 0.0.0.0 --port 8080

or

python micro_file_server/__main__.py

or for HTTPS:

python micro_file_server/__main__.py --cert=.cert/cert.pem --key=.cert/key.pem

Built-in development web server is secure enough, but you may install production Web server: pip install gunicorn

gunicorn micro_file_server.__main__:app --bind 0.0.0.0:8080

or for HTTPS:

gunicorn micro_file_server.__main__:app --bind 0.0.0.0:8080 --certfile=.cert/cert.pem --keyfile=.cert/key.pem

Defaults, that you can change:

export FLASK_FILENAME_MAX_LENGTH=40
export FLASK_MIMETYPE_RECOGNITION=True
export FLASK_SMALL_TEXT_DO_NOT_DOWNLOAD=True
export FLASK_SMALL_TEXT_ENCODING="utf-8"
export FLASK_FLASK_UPLOADING_ENABLED=True
export FLASK_HIDE_HIDDEN=True
export FLASK_ALLOW_REWRITE=True

Screenshot

Check hash

MS Windows: certutil -hashfile "micro-file-server.exe" SHA512

at Ubuntu: sha512sum micro-file-server

at MacOS: shasum -a 512 micro-file-server-macos

Keywords

Filesharing, fileserver, httpserver, microhttp, simplehttp.

micro_file_server's People

Contributors

anoncheg1 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.