Metadata-Version: 2.1
Name: BottleSaml
Version: 21.8.19
Summary: SAML Service Provider for Bottle
Home-page: https://github.com/Glocktober/BottleSaml
Author: gunville
Author-email: rk13088@yahoo.com
License: UNKNOWN
Project-URL: repo, https://github.com/Glocktober/BottleSaml
Project-URL: overview, https://github.com/Glocktober/BottleSaml/blob/main/README.md
Keywords: 'bottle saml plugin'
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: Bottle
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: License.txt

# BottleSaml

**BottleSaml** is a Python module for the [Bottle web framework.](https://github.com/bottlepy/bottle) in two parts:

* **SamlSP()** - [an implementation of a SAML *Service Provider* implementation for **Bottle** web apps](docs/READMESP.md). This permits bottle apps to authenticated with a SAML Identity Provider (IdP).  This module can be used on it's own, or combined with **SamlAuth**. 

* **SamlAuth()** - [is a middleware plugin offering simplified authentication and authorization](docs/READMEAUTH.md) mechanisms utilizing **SamlSP** in **Bottle** framework apps. 

Both modules in **BottleSaml** rely on persistent *session* data in the form of a Python `dict` accessed off the Bottle **`request`** object (*i.e.* `request.session`). By default **BottleSaml** will use the [BottleSessions module](https://github.com/Glocktober/BottleSessions) to provide this - but any session middleware that can add a `session` dict to the `request` object can be used.

In both components the goal is to provide easy to use tools for using SAML identity management platforms in Bottle apps.

