Skip to main content

File sharing web application

Project description

Fishpie

Fishpie is web application for sharing large files.

Installation

Get the package from PyPI:

python3 -m pip install fishpie

Create a WSGI wrapper script:

import datetime

import fishpie
import fishpie.wordpress

app = fishpie.app
app.secret_key = "SOME_VERY_SECRET_BINARY_DATA"
app.permanent_session_lifetime = datetime.timedelta(days=1)
app.config["DATABASE"] = "/my/root/directory/database"
app.config["UPLOAD_DIR"] = "/my/root/directory/uploads"
app.config["authenticate"] = fishpie.wordpress.authenticate
app.config["authentication_data"] = ("host", "user", "password", "database")
app.debug = True

application = app

Configure Apache:

WSGIScriptAlias /transfer /somewhere/fishpie.wsgi
<Directory /somewhere>
  Require all granted
</Directory>

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

FishPie-1.1.0.tar.gz (22.1 kB view hashes)

Uploaded Source

Built Distribution

FishPie-1.1.0-py3-none-any.whl (25.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page