Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b8a5c45

Browse files
authoredDec 13, 2024··
Updated notes on using a cache instance when initializing OAuth.
1 parent fbdbbd6 commit b8a5c45

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
 

‎docs/client/flask.rst

+37
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,43 @@ A ``cache`` instance MUST have methods:
100100

101101
- ``.get(key)``
102102
- ``.set(key, value, expires=None)``
103+
- ``.delete(key)``
104+
105+
An example of a ``cache`` instance can be:
106+
107+
.. code-block:: python
108+
109+
from flask import Flask
110+
111+
class OAuthCache:
112+
113+
def __init__(self, app: Flask) -> None:
114+
"""Initialize the AuthCache."""
115+
self.app = app
116+
117+
def set(self, key: str, value: str, expires: int | None = None) -> None:
118+
"""
119+
Set a value in the cache with optional expiration.
120+
121+
:param key: Unique identifier for the cache entry.
122+
:param value: Value to be stored.
123+
:param expires: Expiration time in seconds. Defaults to None (no expiration).
124+
"""
125+
126+
def get(self, key: str) -> str | None:
127+
"""
128+
Retrieve a value from the cache.
129+
130+
:param key: Unique identifier for the cache entry.
131+
:return: Retrieved value or None if not found or expired.
132+
"""
133+
134+
def delete(self, key: str) -> None:
135+
"""
136+
Delete a cache entry.
137+
138+
:param key: Unique identifier for the cache entry.
139+
"""
103140
104141
105142
Routes for Authorization

0 commit comments

Comments
 (0)
Please sign in to comment.