Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
import streamlit as st
|
2 |
from apify_client import ApifyClient
|
3 |
import requests
|
|
|
4 |
|
5 |
def fetch_google_maps_info(website_name):
|
6 |
apify_client = ApifyClient("apify_api_uz0y556N4IG2aLcESj67kmnGSUpHF12XAkLp")
|
@@ -31,19 +32,17 @@ if website_name:
|
|
31 |
google_maps_data = fetch_google_maps_info(website_name)
|
32 |
|
33 |
if google_maps_data:
|
34 |
-
# Formatting and displaying the data in Streamlit table
|
35 |
-
table_data = {
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
"Reviews Count": google_maps_data["reviewsCount"],
|
46 |
-
}
|
47 |
|
48 |
st.table(table_data)
|
49 |
|
@@ -53,7 +52,8 @@ if website_name:
|
|
53 |
|
54 |
if lat and lng:
|
55 |
# Display location on Streamlit map
|
56 |
-
|
|
|
57 |
|
58 |
weather_data = fetch_weather_info(lat, lng)
|
59 |
current_weather = weather_data.get("current", {})
|
|
|
1 |
import streamlit as st
|
2 |
from apify_client import ApifyClient
|
3 |
import requests
|
4 |
+
import pandas as pd
|
5 |
|
6 |
def fetch_google_maps_info(website_name):
|
7 |
apify_client = ApifyClient("apify_api_uz0y556N4IG2aLcESj67kmnGSUpHF12XAkLp")
|
|
|
32 |
google_maps_data = fetch_google_maps_info(website_name)
|
33 |
|
34 |
if google_maps_data:
|
35 |
+
# Formatting and displaying all the data in Streamlit table
|
36 |
+
table_data = {}
|
37 |
+
for key, value in google_maps_data.items():
|
38 |
+
# Handle lists
|
39 |
+
if isinstance(value, list):
|
40 |
+
table_data[key] = ", ".join(value)
|
41 |
+
# Handle nested dictionaries
|
42 |
+
elif isinstance(value, dict):
|
43 |
+
table_data[key] = ", ".join([f"{k}: {v}" for k, v in value.items()])
|
44 |
+
else:
|
45 |
+
table_data[key] = value
|
|
|
|
|
46 |
|
47 |
st.table(table_data)
|
48 |
|
|
|
52 |
|
53 |
if lat and lng:
|
54 |
# Display location on Streamlit map
|
55 |
+
df_location = pd.DataFrame({'lat': [lat], 'lon': [lng]})
|
56 |
+
st.map(df_location)
|
57 |
|
58 |
weather_data = fetch_weather_info(lat, lng)
|
59 |
current_weather = weather_data.get("current", {})
|