FishPie 1.1.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

FishPie 1.1.0

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>

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.