antfraia commited on
Commit
54a434a
·
1 Parent(s): d1daf4e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -14
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
- "Location": f"Lat: {google_maps_data['location']['lat']}, Lng: {google_maps_data['location']['lng']}",
37
- "Plus Code": google_maps_data["plusCode"],
38
- "Menu": google_maps_data["menu"],
39
- "Total Score": google_maps_data["totalScore"],
40
- "Permanently Closed": google_maps_data["permanentlyClosed"],
41
- "Temporarily Closed": google_maps_data["temporarilyClosed"],
42
- "Place ID": google_maps_data["placeId"],
43
- "Categories": ", ".join(google_maps_data["categories"]),
44
- "CID": google_maps_data["cid"],
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
- st.map({"lat": lat, "lon": lng})
 
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", {})