Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -7,6 +7,7 @@ import base64
|
|
7 |
import folium
|
8 |
from streamlit_folium import st_folium
|
9 |
from geopy.geocoders import Nominatim
|
|
|
10 |
|
11 |
# Function to set background image
|
12 |
def set_background(png_file):
|
@@ -60,13 +61,19 @@ urls = [
|
|
60 |
"https://www.tw-animal.com/pet/171211/c001252.html"
|
61 |
]
|
62 |
|
63 |
-
|
64 |
# Create an empty list to store the extracted data
|
65 |
data_list = []
|
66 |
|
67 |
# Initialize the geolocator
|
68 |
geolocator = Nominatim(user_agent="geoapiExercises")
|
69 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
# Scrape data when the button is pressed
|
71 |
if st.button('開始爬取資料'):
|
72 |
st.write("正在爬取資料,請稍候...")
|
@@ -84,20 +91,18 @@ if st.button('開始爬取資料'):
|
|
84 |
|
85 |
# Append the data to the list if rating meets the threshold
|
86 |
if rating >= min_rating:
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
except Exception as e:
|
100 |
-
st.warning(f"無法獲取經緯度:{e}")
|
101 |
|
102 |
# If data was scraped successfully
|
103 |
if data_list:
|
|
|
7 |
import folium
|
8 |
from streamlit_folium import st_folium
|
9 |
from geopy.geocoders import Nominatim
|
10 |
+
from geopy.exc import GeocoderTimedOut
|
11 |
|
12 |
# Function to set background image
|
13 |
def set_background(png_file):
|
|
|
61 |
"https://www.tw-animal.com/pet/171211/c001252.html"
|
62 |
]
|
63 |
|
|
|
64 |
# Create an empty list to store the extracted data
|
65 |
data_list = []
|
66 |
|
67 |
# Initialize the geolocator
|
68 |
geolocator = Nominatim(user_agent="geoapiExercises")
|
69 |
|
70 |
+
# Function to geocode an address
|
71 |
+
def geocode_address(address):
|
72 |
+
try:
|
73 |
+
return geolocator.geocode(address)
|
74 |
+
except GeocoderTimedOut:
|
75 |
+
return geocode_address(address)
|
76 |
+
|
77 |
# Scrape data when the button is pressed
|
78 |
if st.button('開始爬取資料'):
|
79 |
st.write("正在爬取資料,請稍候...")
|
|
|
91 |
|
92 |
# Append the data to the list if rating meets the threshold
|
93 |
if rating >= min_rating:
|
94 |
+
location = geocode_address(address)
|
95 |
+
if location:
|
96 |
+
data_list.append({
|
97 |
+
"標題": title,
|
98 |
+
"手機": phone,
|
99 |
+
"地址": address,
|
100 |
+
"評分": rating,
|
101 |
+
"經度": location.longitude,
|
102 |
+
"緯度": location.latitude
|
103 |
+
})
|
104 |
+
else:
|
105 |
+
st.warning(f"無法獲取經緯度: {address}")
|
|
|
|
|
106 |
|
107 |
# If data was scraped successfully
|
108 |
if data_list:
|