datasette / datasette-secrets

Manage secrets such as API keys for use with other Datasette plugins
Apache License 2.0
5 stars 0 forks source link

Ship plugins that use this #8

Open simonw opened 5 months ago

simonw commented 5 months ago
simonw commented 5 months ago
@hookimpl
def register_secrets():
    return [
        Secret(
            "OPENAI_API_KEY",
            'An OpenAI API key. Get them from <a href="https://platform.openai.com/api-keys">here</a>.',
        ),
    ]