Codebase list python-itsdangerous / f5472ac
One more example Armin Ronacher 12 years ago
1 changed file(s) with 2 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
3131
3232 - You can serialize and sign a user ID for unsubscribing of newsletters
3333 into URLs. This way you don't need to generate one-time tokens and
34 store them in the database.
34 store them in the database. Same thing with any kind of activation
35 link for accounts and similar things.
3536 - Signed objects can be stored in cookies or other untrusted sources
3637 which means you don't need to have sessions stored on the server which
3738 reduces the number of necessary database queries.