Metadata-Version: 2.4
Name: plain.sessions
Version: 0.23.0
Summary: Session management for Plain.
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: plain<1.0.0
Description-Content-Type: text/markdown

## Sessions - db backed

Manage sessions and save them in the database.

- associate with users?
- devices?

## Usage

To use sessions in your views, access the `request.session` object:

```python
# Example view using sessions
class MyView(View):
    def get(self):
        # Store a value in the session
        self.request.session['key'] = 'value'
        # Retrieve a value from the session
        value = self.request.session.get('key')
```
