A simple session manager for aws lambda function using dynamodb
Project description
Session Lambda
A simple way to manage sessions for AWS Lambdas
Install
pip install session-lambda
Prerequisites
DynamoDB Table
- A table in DynamoDB with a primary key named
key
with type string - [optional] Enable TTL in your DynamoDB table with attribute named
ttl
Usage
Set SESSION_LAMBDA_DYNAMODB_TABLE_NAME
env var:
export SESSION_LAMBDA_DYNAMODB_TABLE_NAME=<table-name>
Run the following python code:
import time
from session_lambda import session, set_session_data, get_session_data
@session
def lambda_handler(event, context):
print(get_session_data())
set_session_data((get_session_data() or 0)+1)
return {"headers":{}}
# first client_a call
response = lambda_handler({'headers':{}}, {})
# get session id from response (created by the server)
session_id = response.get('headers').get('session-id')
# use session id in subsequent calls
lambda_handler({'headers':{'session-id':session_id}}, {})
lambda_handler({'headers':{'session-id':session_id}}, {})
lambda_handler({'headers':{'session-id':session_id}}, {})
# first client_b call
lambda_handler({'headers':{}}, {})
You should get the following prints:
None
1
1
1
None
This time using the update=True
mode:
import time
from session_lambda import session, set_session_data, get_session_data
@session(update=True)
def lambda_handler(event, context):
print(get_session_data())
set_session_data((get_session_data() or 0)+1)
return {"headers":{}}
# first client_a call
response = lambda_handler({'headers':{}}, {})
# get session id from response (created by the server)
session_id = response.get('headers').get('session-id')
# use session id in subsequent calls
lambda_handler({'headers':{'session-id':session_id}}, {})
lambda_handler({'headers':{'session-id':session_id}}, {})
lambda_handler({'headers':{'session-id':session_id}}, {})
# first client_b call
lambda_handler({'headers':{}}, {})
Now you should see:
None
1
2
3
None
Features
@session(id_key_name='session-id', update=False, ttl=0)
def lambda_handler(event, context):
...
id_key_name
is the expected key name in theevent[headers]
. It is default tosession-id
. It is case-sensitive.update
flag control weatherset_sessions_data
updates the data. It is default toFalse
.ttl
is seconds interval for the session to live (since the last update time). By default it is disabled. Any value larger then 0 will enable this feature. Make sure to set the TTL key name in your dynamodb tottl
.
Future Features
- Support Schema validation for session data
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
session_lambda-0.3.2.tar.gz
(5.0 kB
view details)
Built Distribution
File details
Details for the file session_lambda-0.3.2.tar.gz
.
File metadata
- Download URL: session_lambda-0.3.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.5 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40d190de35d4e7c3fb1036e66b9bd8e2b633cc09af8029be85c291b12715e181 |
|
MD5 | 961672467e1c3ed2b6c8c8f561da27f6 |
|
BLAKE2b-256 | 84092d1c26ac2a10bd781ff59f4d1af84e6efa67eaf22cf2d5a6c1b683002318 |
Provenance
File details
Details for the file session_lambda-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: session_lambda-0.3.2-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.2 CPython/3.9.5 Darwin/21.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24adccd3719a4b8a82e5f694ed2dc08c4104de60840b1dd9a586b936e5b72fd7 |
|
MD5 | 093985641f4deddffd763adf19876987 |
|
BLAKE2b-256 | 85a0c5d6e6b2437b9a4c3a28998f4ef57eec80c20e84a132f1bf40e2ecfeddbc |