Skip to main content

A very micro http framework.

Project description

yhttp-auth

PyPI Build Coverage Status

Authentication extension for yhttp.

Install

pip install yhttp-auth

Usage

from yhttp import Application
from yhttp.ext.auth import install as auth_install


app = Application('0.1.0', 'foo')
auth = auth_install(app)
app.settings.merge(f'''
auth:
  redis:
    host: localhost
    port: 6379
    db: 0

  token:
    algorithm: HS256
    secret: foobar

  refresh:
    key: yhttp-refresh-token
    algorithm: HS256
    secret: quxquux
    secure: true
    httponly: true
    maxage: 2592000  # 1 Month
    domain: example.com
''')


@app.route('/reftokens')
@yhttp.statuscode(yhttp.statuses.created)
def create(req):
    app.auth.set_refreshtoken(req, 'alice', dict(baz='qux'))

@app.route('/tokens')
@yhttp.statuscode(yhttp.statuses.created)
@yhttp.text
def refresh(req):
    reftoken = app.auth.verify_refreshtoken(req)
    return app.auth.dump_from_refreshtoken(reftoken, dict(foo='bar'))

@app.route('/admin')
@auth(roles='admin, god')
@yhttp.text
def get(req):
    return req.identity.roles

app.ready()

Command line interface

setup.py

setup(
    ...
    entry_points={
        'console_scripts': [
            'myapp = myapp:app.climain'
        ]
    },
    ...
)
myapp auth --help

Contribution

python-makelib

Install python-makelib.

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

yhttp_auth-7.2.0.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

yhttp_auth-7.2.0-py3-none-any.whl (6.6 kB view details)

Uploaded Python 3

File details

Details for the file yhttp_auth-7.2.0.tar.gz.

File metadata

  • Download URL: yhttp_auth-7.2.0.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yhttp_auth-7.2.0.tar.gz
Algorithm Hash digest
SHA256 df18b1f387ae9fe90ecf24dd9dbb0f42939ce2dedc343845f26fa38d7436f397
MD5 6707699f1c76b053ab330052a994af83
BLAKE2b-256 9c45a9b81440e07afa06be16147785d52b2c3166c20df9db581defaabbb42ee8

See more details on using hashes here.

File details

Details for the file yhttp_auth-7.2.0-py3-none-any.whl.

File metadata

  • Download URL: yhttp_auth-7.2.0-py3-none-any.whl
  • Upload date:
  • Size: 6.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for yhttp_auth-7.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f70f85a2824e1064eb1a9627419ffd2507f2798ebcbd1b0d323f1cdc1761aa9e
MD5 a1132987196f70a0101c5d7530fd08c8
BLAKE2b-256 94a3c6e46ce8220a5bcff4af256c85b35266798232ce1964ec1123d54d6e53b9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page