Skip to main content

Redis sessions for Tornado

Project description

# pycket
This is a session library, written for use with Redis and Tornado web server.

## License
This software is under BSD 2-Clause License (see LICENSE file)

## Requirements
Non-Python requirements:

* Redis (tested with version 2.4.0)

Python requirements (included in setup script)

* [Tornado](http://pypi.python.org/pypi/tornado) (tested with 2.1.1, installable via "tornado" package in PyPI)
* [redis-py](http://pypi.python.org/pypi/redis/) (tested with 2.4.9, installable via "redis" package in PyPI)

### Development requirements
If you wish to contribute to the project as a developer, just install the requirements file included in the project with pip.

## Examples
You have two ways of using pycket sessions in your application.

The easier way is including the appropriate mixin(s) in the handler's inheritance list, and the "session" member will become available:

```python
from pycket.session import SessionMixin


class MyHandler(tornado.web.RequestHandler, SessionMixin):
def get(self):
self.session.set('foo', ['bar', 'baz'])
foo = self.session.get('foo') # will get back the list ['bar', 'baz']
```

The other way (harder, but less coupled) is to instantiate a SessionManager and passing the handler instance to the initializer:

```python
from pycket.session import SessionManager


class MyHandler(tornado.web.RequestHandler):
def get(self):
session = SessionManager(self)
session.set('foo', ['bar', 'baz'])
foo = session.get('foo') # will get back the list ['bar', 'baz']
```

For both examples above the session instance is a SessionManager.

SessionManager instances act as a dictionary, so they can retrieve values with a default alternative, like:

```python
session.get("this doesn't exist", "so give me this instead")
```

and they can also get and set values with square-brackets, like:

```python
session['gimme'] = 'Fire!'
print session['gimme'] # 'Fire!'
```

## Settings
pycket understands two types of settings, which must be items in the application's settings:

1. "pycket_redis": this is a dictionary containing any items that should be repassed to the redis.Redis instance to be used in the session manager (such as "host" and "port"); Notice, however, that if you want to change the dataset numbers to be used for sessions and notifications, use "db_sessions" and "db_notifications", respectively, instead of "db" (they will be converted to the "db" parameter that is passed to the Redis client for each manager afterwards);
2. "pycket_cookies": this is a dictionary containing all settings to be repassed to the RequestHandler.set_secure_cookie. If they don't contain "expires" or "expires_days" items, they will be set as None, which means that the default behaviour for the sessions is to last on browser session. (And deleted as soon as the user closes the browser.) Notice that the sessions in the database last for one day, though.

Example:

```python
application = tornado.web.Application([
(r'/', MainHandler),
], **{
'pycket_redis': {
'host': 'localhost',
'port': 6379,
'db_sessions': 10,
'db_notifications': 11,
}
'pycket_cookies': {
'expires_days': 120,
}
)
```

The default dataset numbers for sessions and notifications are, respectively, 0 and 1.

## Notifications
This feature is almost equal to the sessions, but slightly different:

* They have to be used via pycket.notification.NotificationMixin or pycket.notification.NotificationManager;
* The values persisted with them can be retrieved only once, and after this are immediately deleted from the dataset;
* The default dataset used is 1, instead of 0, to avoid conflicts with normal sessions.

## Author
This module was developed by Diogo Baeder (*/diogobaeder), who is an absolute Python lover, and is currently in love with event-driven programming and ArchLinux.

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

pycket-0.1.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

pycket-0.1-py2.7.egg (10.5 kB view details)

Uploaded Source

File details

Details for the file pycket-0.1.tar.gz.

File metadata

  • Download URL: pycket-0.1.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pycket-0.1.tar.gz
Algorithm Hash digest
SHA256 206f618150c8a02ed7f038fa1449f172a99b0a5c2dfd5b7872d67b8a11f177da
MD5 482067e2a8cfa3144738035942ca49f0
BLAKE2b-256 f2176726118e9fe0fe4de64ab4fd92955eed6096037a08a0bfc0fd2b26678b3a

See more details on using hashes here.

File details

Details for the file pycket-0.1-py2.7.egg.

File metadata

  • Download URL: pycket-0.1-py2.7.egg
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pycket-0.1-py2.7.egg
Algorithm Hash digest
SHA256 83000aa728f3eb3e07781c645ea143f85cf915590343a19c35ebf1a16678db53
MD5 8e795cb7aaa08f9c9c0e173d35297cc8
BLAKE2b-256 b563e3223a04836e00a8551c5abdf31c249bcb967ee00a1dd3ba1a4d61f71094

See more details on using hashes here.

Supported by

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