Update app.py
Browse files
app.py
CHANGED
@@ -5,6 +5,11 @@ import requests
|
|
5 |
from io import BytesIO
|
6 |
from PIL import Image
|
7 |
|
|
|
|
|
|
|
|
|
|
|
8 |
# Define maximum dimensions for the fortune image (in pixels)
|
9 |
MAX_SIZE = (400, 400)
|
10 |
|
@@ -13,80 +18,80 @@ st.set_page_config(page_title="Fortuen Stick Enquiry", layout="wide")
|
|
13 |
|
14 |
st.title("Fortuen Stick Enquiry")
|
15 |
|
16 |
-
# Initialize session state variables
|
17 |
-
if "submitted_text" not in st.session_state:
|
18 |
-
|
19 |
-
if "fortune_number" not in st.session_state:
|
20 |
-
|
21 |
-
if "fortune_row" not in st.session_state:
|
22 |
-
|
23 |
-
if "fortune_data" not in st.session_state:
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
|
30 |
-
if "stick_clicked" not in st.session_state:
|
31 |
-
|
32 |
|
33 |
|
34 |
-
# Callback function for the submit button:
|
35 |
-
def submit_text_callback():
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
|
62 |
-
# Function to load and resize local images using Pillow
|
63 |
-
def load_and_resize_image(path, max_size=MAX_SIZE):
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
|
72 |
-
# Function to download image from URL and resize it
|
73 |
-
def download_and_resize_image(url, max_size=MAX_SIZE):
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
|
85 |
-
def stick_enquiry_callback():
|
86 |
-
|
87 |
|
88 |
-
# Main layout: Left (input) and Right (fortune display)
|
89 |
-
left_col, _, right_col = st.columns([3, 1, 5])
|
90 |
|
91 |
# # ---- Left Column ----
|
92 |
# with left_col:
|
|
|
5 |
from io import BytesIO
|
6 |
from PIL import Image
|
7 |
|
8 |
+
import os
|
9 |
+
print("Current Working Directory:", os.getcwd())
|
10 |
+
print("Files in the directory:", os.listdir('.'))
|
11 |
+
|
12 |
+
|
13 |
# Define maximum dimensions for the fortune image (in pixels)
|
14 |
MAX_SIZE = (400, 400)
|
15 |
|
|
|
18 |
|
19 |
st.title("Fortuen Stick Enquiry")
|
20 |
|
21 |
+
# # Initialize session state variables
|
22 |
+
# if "submitted_text" not in st.session_state:
|
23 |
+
# st.session_state.submitted_text = False
|
24 |
+
# if "fortune_number" not in st.session_state:
|
25 |
+
# st.session_state.fortune_number = None
|
26 |
+
# if "fortune_row" not in st.session_state:
|
27 |
+
# st.session_state.fortune_row = None
|
28 |
+
# if "fortune_data" not in st.session_state:
|
29 |
+
# try:
|
30 |
+
# st.session_state.fortune_data = pd.read_csv("detail.csv")
|
31 |
+
# except Exception as e:
|
32 |
+
# st.error(f"Error loading CSV: {e}")
|
33 |
+
# st.session_state.fortune_data = None
|
34 |
|
35 |
+
# if "stick_clicked" not in st.session_state:
|
36 |
+
# st.session_state.stick_clicked = False
|
37 |
|
38 |
|
39 |
+
# # Callback function for the submit button:
|
40 |
+
# def submit_text_callback():
|
41 |
+
# st.session_state.submitted_text = True
|
42 |
+
# # Randomly generate a number from 1 to 100
|
43 |
+
# st.session_state.fortune_number = random.randint(1, 100)
|
44 |
|
45 |
+
# # Look up the row in the CSV where CNumber matches the generated fortune number.
|
46 |
+
# df = st.session_state.fortune_data
|
47 |
+
# if df is not None:
|
48 |
+
# matching_row = df[df['CNumber'] == st.session_state.fortune_number]
|
49 |
+
# if not matching_row.empty:
|
50 |
+
# row = matching_row.iloc[0]
|
51 |
+
# st.session_state.fortune_row = {
|
52 |
+
# "Header": row.get("Header", "N/A"),
|
53 |
+
# "Luck": row.get("Luck", "N/A"),
|
54 |
+
# "Description": row.get("Description", "No description available."),
|
55 |
+
# "Detail": row.get("Detail", "No detail available."),
|
56 |
+
# "HeaderLink": row.get("link", None) # URL to the image
|
57 |
+
# }
|
58 |
+
# else:
|
59 |
+
# st.session_state.fortune_row = {
|
60 |
+
# "Header": "N/A",
|
61 |
+
# "Luck": "N/A",
|
62 |
+
# "Description": "No description available.",
|
63 |
+
# "Detail": "No detail available.",
|
64 |
+
# "HeaderLink": None
|
65 |
+
# }
|
66 |
|
67 |
+
# # Function to load and resize local images using Pillow
|
68 |
+
# def load_and_resize_image(path, max_size=MAX_SIZE):
|
69 |
+
# try:
|
70 |
+
# img = Image.open(path)
|
71 |
+
# img.thumbnail(max_size, Image.Resampling.LANCZOS)
|
72 |
+
# return img
|
73 |
+
# except Exception as e:
|
74 |
+
# st.error(f"Error loading image: {e}")
|
75 |
+
# return None
|
76 |
|
77 |
+
# # Function to download image from URL and resize it
|
78 |
+
# def download_and_resize_image(url, max_size=MAX_SIZE):
|
79 |
+
# try:
|
80 |
+
# response = requests.get(url)
|
81 |
+
# response.raise_for_status()
|
82 |
+
# image_bytes = BytesIO(response.content)
|
83 |
+
# img = Image.open(image_bytes)
|
84 |
+
# img.thumbnail(max_size, Image.Resampling.LANCZOS)
|
85 |
+
# return img
|
86 |
+
# except Exception as e:
|
87 |
+
# st.error(f"Error loading image from URL: {e}")
|
88 |
+
# return None
|
89 |
|
90 |
+
# def stick_enquiry_callback():
|
91 |
+
# st.session_state.stick_clicked = True
|
92 |
|
93 |
+
# # Main layout: Left (input) and Right (fortune display)
|
94 |
+
# left_col, _, right_col = st.columns([3, 1, 5])
|
95 |
|
96 |
# # ---- Left Column ----
|
97 |
# with left_col:
|