FishPie


NameFishPie JSON
Version 1.1.0 PyPI version JSON
download
home_pagehttps://github.com/lamyj/fishpie
SummaryFile sharing web application
upload_time2023-11-30 18:35:46
maintainer
docs_urlNone
authorJulien Lamy
requires_python
licenseGPL-3.0-or-later
keywords file sharing web application flask
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Fishpie

Fishpie is web application for sharing large files.

## Installation

Get the package from PyPI:

```bash
python3 -m pip install fishpie
```

Create a WSGI wrapper script:

```python
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:

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/lamyj/fishpie",
    "name": "FishPie",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "File sharing,Web application,Flask",
    "author": "Julien Lamy",
    "author_email": "julien@seasofcheese.net",
    "download_url": "https://files.pythonhosted.org/packages/8c/2c/5de9598e550a261d66e0f8f00fa1324ce20c7910f8fe268267a2f836a4ab/FishPie-1.1.0.tar.gz",
    "platform": null,
    "description": "# Fishpie\n\nFishpie is web application for sharing large files.\n\n## Installation\n\nGet the package from PyPI:\n\n```bash\npython3 -m pip install fishpie\n```\n\nCreate a WSGI wrapper script:\n\n```python\nimport datetime\n\nimport fishpie\nimport fishpie.wordpress\n\napp = fishpie.app\napp.secret_key = \"SOME_VERY_SECRET_BINARY_DATA\"\napp.permanent_session_lifetime = datetime.timedelta(days=1)\napp.config[\"DATABASE\"] = \"/my/root/directory/database\"\napp.config[\"UPLOAD_DIR\"] = \"/my/root/directory/uploads\"\napp.config[\"authenticate\"] = fishpie.wordpress.authenticate\napp.config[\"authentication_data\"] = (\"host\", \"user\", \"password\", \"database\")\napp.debug = True\n\napplication = app\n```\n\nConfigure Apache:\n\n```apache\nWSGIScriptAlias /transfer /somewhere/fishpie.wsgi\n<Directory /somewhere>\n  Require all granted\n</Directory>\n```\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "File sharing web application",
    "version": "1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/lamyj/fishpie"
    },
    "split_keywords": [
        "file sharing",
        "web application",
        "flask"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c343765dd429b642399f88741ac7ec1cdce01ceb2f5d19b6f5c239102390932",
                "md5": "a205b3ce160f1f59daf9112e4e0d0f84",
                "sha256": "d084b23a44f4dbf7da79808cc61fe6c3251b4b7e303484087fc5c7d39fe3464c"
            },
            "downloads": -1,
            "filename": "FishPie-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a205b3ce160f1f59daf9112e4e0d0f84",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 25033,
            "upload_time": "2023-11-30T18:35:44",
            "upload_time_iso_8601": "2023-11-30T18:35:44.214041Z",
            "url": "https://files.pythonhosted.org/packages/7c/34/3765dd429b642399f88741ac7ec1cdce01ceb2f5d19b6f5c239102390932/FishPie-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c2c5de9598e550a261d66e0f8f00fa1324ce20c7910f8fe268267a2f836a4ab",
                "md5": "11a7c0436239df5d837ae119203dcf0a",
                "sha256": "f22ca66ce7534d1d11b990ab42916d695ddad47f2e83cf89591209cb062cfe09"
            },
            "downloads": -1,
            "filename": "FishPie-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "11a7c0436239df5d837ae119203dcf0a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 22094,
            "upload_time": "2023-11-30T18:35:46",
            "upload_time_iso_8601": "2023-11-30T18:35:46.570327Z",
            "url": "https://files.pythonhosted.org/packages/8c/2c/5de9598e550a261d66e0f8f00fa1324ce20c7910f8fe268267a2f836a4ab/FishPie-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-30 18:35:46",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "lamyj",
    "github_project": "fishpie",
    "github_not_found": true,
    "lcname": "fishpie"
}
        
Elapsed time: 0.14712s