Plain is headed towards 1.0! Subscribe for development updates →
Manage sessions and save them in the database.
1from plain.exceptions import BadRequest, SuspiciousOperation 2 3 4class SuspiciousSession(SuspiciousOperation): 5 """The session may be tampered with""" 6 7 pass 8 9 10class SessionInterrupted(BadRequest): 11 """The session was interrupted.""" 12 13 pass