Spaces:
Sleeping
Sleeping
Commit
·
80d735f
1
Parent(s):
ca49835
Update app.py
Browse files
app.py
CHANGED
@@ -1,33 +1,21 @@
|
|
1 |
-
|
2 |
import streamlit as st
|
3 |
from streamlit_cookies_manager import EncryptedCookieManager
|
4 |
import os
|
5 |
import warnings
|
6 |
|
7 |
cookies = EncryptedCookieManager(
|
8 |
-
# This prefix will get added to all your cookie names.
|
9 |
-
# This way you can run your app on Streamlit Cloud without cookie name clashes with other apps.
|
10 |
prefix="LUL/streamlit-cookies-manager/",
|
11 |
-
# You should really setup a long COOKIES_PASSWORD secret if you're running on Streamlit Cloud.
|
12 |
password=os.environ.get("COOKIES_PASSWORD", "uDnda87,kGFdi&jh.kjsk/jk4DF369*^jhGks"),
|
13 |
)
|
14 |
warnings.filterwarnings("ignore")
|
15 |
import uuid
|
16 |
from datetime import datetime, timedelta
|
17 |
|
18 |
-
|
19 |
-
user_id = None
|
20 |
-
|
21 |
-
@st.cache_data
|
22 |
-
def gener():
|
23 |
-
user_id = str(uuid.uuid4()) # generate a random user id
|
24 |
-
expiration_date = datetime.now() + timedelta(days=365) # set expiration date to one year from now
|
25 |
-
cookies['user_id'] = user_id# set the cookie
|
26 |
-
st.write(f"Your user id is {user_id}")
|
27 |
-
|
28 |
|
29 |
-
if user_id is None:
|
30 |
-
|
31 |
else:
|
32 |
-
user_id =
|
33 |
-
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
from streamlit_cookies_manager import EncryptedCookieManager
|
3 |
import os
|
4 |
import warnings
|
5 |
|
6 |
cookies = EncryptedCookieManager(
|
|
|
|
|
7 |
prefix="LUL/streamlit-cookies-manager/",
|
|
|
8 |
password=os.environ.get("COOKIES_PASSWORD", "uDnda87,kGFdi&jh.kjsk/jk4DF369*^jhGks"),
|
9 |
)
|
10 |
warnings.filterwarnings("ignore")
|
11 |
import uuid
|
12 |
from datetime import datetime, timedelta
|
13 |
|
14 |
+
user_id = cookies.get('user_id') # Attempt to retrieve the user ID cookie
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
+
if user_id is not None:
|
17 |
+
st.write(f"Your user id is {user_id}") # Display the user ID
|
18 |
else:
|
19 |
+
user_id = str(uuid.uuid4()) # Generate a random user ID
|
20 |
+
cookies['user_id'] = user_id # Set the cookie
|
21 |
+
st.write(f"Welcome! Your user id is {user_id}") # Display the newly generated user ID
|