PenguinMan commited on
Commit
6862f85
·
1 Parent(s): 2715cee

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -0
app.py ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ @st.cache_data
19
+ def gener():
20
+ user_id = str(uuid.uuid4()) # generate a random user id
21
+ expiration_date = datetime.now() + timedelta(days=365) # set expiration date to one year from now
22
+ cookies['user_id'] = user_id# set the cookie
23
+
24
+ user_id = cookies['user_id'] # get the cookie value
25
+ if user_id is not None:
26
+ st.write(f"Your user id is {user_id}") # display the user id
27
+ else:
28
+ gener()