Poulda — a simple file upload service

Poulda is a simple file upload web service. It comes from a need I have to receive large files from friends and family who would not be bothered to use FTP or anything more complex than a web browser interface. Amongst its features are such diverse elements as:

Source
https://github.com/dbaty/poulda
PyPI
http://pypi.python.org/pypi/Poulda
Latest version
0.8

Requirements

Poulda requires Python 2.7 and an RDBMS. SQLite will do very well unless you expect a large number of simultaneous users (in which case you may want to think twice anyway, since Poulda has not been developed and tested to scale up).

Installation

  1. It is highly recommended that you install Poulda in a virtual environment. Once you have one, you may install Poulda and its dependencies:

    $ easy_install Poulda
  2. Download the development WSGI configuration file and make appropriate changes (see the Configuration section below). The source repository also provides a more production-ready configuration file.
  3. Install Waitress (or use your preferred WSGI server and tweak the WSGI configuration file):

    $ easy_install Waitress
  4. And finally start the application:

    $ pserve production.ini

Configuration

The WSGI configuration file should be modified to fit your system and your needs:

poulda.accounts

A space (or new line) separated list of user accounts. Each user account is composed by the login, followed by a colon, followed by the password. Passwords must not contain the space character.

Examples:

poulda.accounts = jsmith:secret jane.doe:mYp3ssWord
poulda.accounts = jsmith:secret
                  jane.doe:mYp3ssWord
poulda.db_url

The database connection string.

Examples:

poulda.db_url = sqlite:///%(here)s/Poulda.db
poulda.db_url = postgresql://poulda:secret_password@localhost/poulda
poulda.enabled

The string "true" if you wish to enable the service. If any other value is provided, all pages will show a message that indicates that the service is disabled (and users will not be able to do anything).

poulda.secret

A secret string that will be used to encrypt authentication tokens.

poulda.upload_dir

The path to the directory where uploaded files will be stored.

The inevitable screenshots

home page upload page

Meta

Poulda is hosted on GitHub. Feel free to report bugs and contribute there.

Poulda is based on the Pyramid web framework.

Poulda is written by Damien Baty and is licenced under the 3-clause BSD license.