Skip to main content

Datasette plugin for authenticating access using passwords

Project description

datasette-auth-passwords

PyPI Changelog License

Datasette plugin for authenticating access using passwords

Installation

Install this plugin in the same environment as Datasette.

$ pip install datasette-auth-passwords

Usage

This plugin works based on a list of username/password accounts that are hard-coded into the plugin configuration.

First, you'll need to create a password hash. You can do this using the tool located at /-/password-tool when the plugin is installed.

Now add the following to your metadata.json:

{
    "plugins": {
        "datasette-auth-passwords": {
            "accounts": {
                "your_username": {
                    "password_hash": {
                        "$env": "PASSWORD_HASH_1"
                    },
                    "actor": {
                        "id": "your_username"
                    }
                }
            }
        }
    }
}

The password hash can now be specified in an environment variable when you run Datasette. You can do that like so:

PASSWORD_HASH_1="pbkdf2_sha256$..." \
    datasette -m metadata.json

Or by using the --plugin-secret option to datasette publish, see Secret configuration values.

You will now be able to log in to your instance using the form at /-/login with your_username as the username and the password that you used to create your hash as the password.

You can include as many accounts as you like in the configuration, each with different usernames.

The "actor" block in each one is the actor that will be authenticated - see Actors in the Datasette documentation for details.

Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:

cd datasette-auth-passwords
python3 -mvenv venv
source venv/bin/activate

Or if you are using pipenv:

pipenv shell

Now install the dependencies and tests:

pip install -e '.[test]'

To run the tests:

pytest

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

datasette-auth-passwords-0.1.tar.gz (4.0 kB view hashes)

Uploaded Source

Built Distribution

datasette_auth_passwords-0.1-py3-none-any.whl (4.5 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