Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/usingnamespace/pyramid_authsanity
An auth policy for the Pyramid Web Framework with sane defaults.
https://github.com/usingnamespace/pyramid_authsanity
Last synced: 3 months ago
JSON representation
An auth policy for the Pyramid Web Framework with sane defaults.
- Host: GitHub
- URL: https://github.com/usingnamespace/pyramid_authsanity
- Owner: usingnamespace
- License: isc
- Created: 2015-09-18T03:15:55.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2023-12-06T13:38:56.000Z (12 months ago)
- Last Synced: 2024-07-24T01:33:53.690Z (4 months ago)
- Language: Python
- Homepage: http://pyramid-authsanity.readthedocs.org/en/latest/
- Size: 132 KB
- Stars: 14
- Watchers: 6
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.rst
- License: LICENSE
Awesome Lists containing this project
- awesome-pyramid - pyramid_authsanity - (Authentication)
README
==================
pyramid_authsanity
==================An auth policy for the `Pyramid Web Framework
`_ with sane defaults that works with `Michael
Merickel's `_ absolutely fantastic
`pyramid_services `_.
Provides an easy to use authorization policy that incorporates web security
best practices.Installation
============Install from `PyPI `_ using
``pip`` or ``easy_install`` inside a virtual environment.::
$ $VENV/bin/pip install pyramid_authsanity
Or install directly from source.
::
$ git clone https://github.com/usingnamespace/pyramid_authsanity.git
$ cd pyramid_authsanity
$ $VENV/bin/pip install -e .Setup
=====Activate ``pyramid_authsanity`` by including it into your pyramid application.
::
config.include('pyramid_authsanity')