Spaces:
Sleeping
Sleeping
File size: 15,742 Bytes
b851932 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 |
import streamlit as st
from serpapi import GoogleSearch
# SerpAPI API Key
API_KEY = "8369b2ad95bdb8602cb3f5da80c056e646691599ea0f5aeb01ea47cf18f28270"
# Function to fetch news articles using SerpAPI
def fetch_news_serpapi():
st.info("Fetching latest news on waste management using SerpAPI...")
search = GoogleSearch({
"q": "waste management India",
"tbm": "nws",
"api_key": API_KEY
})
results = search.get_dict()
if "news_results" in results:
news = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
return news
else:
return []
# Function to fetch hackathons and webinars using SerpAPI
def fetch_hackathons_serpapi():
st.info("Fetching hackathons and webinars related to waste management using SerpAPI...")
search = GoogleSearch({
"q": "waste management hackathon OR webinar",
"tbm": "nws",
"api_key": API_KEY
})
results = search.get_dict()
if "news_results" in results:
hackathons = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
return hackathons
else:
return []
# Function to fetch government initiatives using SerpAPI
def fetch_government_initiatives_serpapi():
st.info("Fetching Indian government initiatives on waste management using SerpAPI...")
search = GoogleSearch({
"q": "Indian government waste management initiatives",
"tbm": "nws",
"api_key": API_KEY
})
results = search.get_dict()
if "news_results" in results:
initiatives = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
return initiatives
else:
return []
# Streamlit app layout
def main():
st.set_page_config(page_title="BinSight", layout="wide")
st.title("π BinSight - Waste Management & Education")
st.markdown(
"""
Welcome to **BinSight**! This platform provides real-time updates on:
- π° Current news on waste management.
- π‘ Hackathons and webinars related to waste management.
- π Indian government initiatives.
"""
)
# Tabs for better UI
tab1, tab2, tab3 = st.tabs(["π° News", "π‘ Hackathons/Webinars", "π Govt Initiatives"])
# Tab 1: News
with tab1:
news = fetch_news_serpapi()
if news:
for item in news:
st.markdown(f"[{item['title']}]({item['link']})")
else:
st.warning("No news articles found.")
# Tab 2: Hackathons/Webinars
with tab2:
hackathons = fetch_hackathons_serpapi()
if hackathons:
for event in hackathons:
st.markdown(f"[{event['title']}]({event['link']})")
else:
st.warning("No hackathons or webinars found.")
# Tab 3: Govt Initiatives
with tab3:
initiatives = fetch_government_initiatives_serpapi()
if initiatives:
for initiative in initiatives:
st.markdown(f"[{initiative['title']}]({initiative['link']})")
else:
st.warning("No government initiatives found.")
# Footer
st.sidebar.title("About BinSight")
st.sidebar.info(
"""
BinSight is an initiative to educate people about waste management and to connect
them with events, news, and government programs to make our planet sustainable.
"""
)
# Back button to redirect to dashboard
st.markdown("<br>", unsafe_allow_html=True)
st.markdown("<a href='https://binsight.onrender.com/dashboard.html' target='_self' style='text-decoration:none;'><button style='padding: 10px 20px; font-size: 16px;'>β¬
Back to Dashboard</button></a>", unsafe_allow_html=True)
if __name__ == "__main__":
main()
# Best version without backbutton
# import streamlit as st
# from serpapi import GoogleSearch
# # SerpAPI API Key
# API_KEY = "8369b2ad95bdb8602cb3f5da80c056e646691599ea0f5aeb01ea47cf18f28270"
# # Function to fetch news articles using SerpAPI
# def fetch_news_serpapi():
# st.info("Fetching latest news on waste management using SerpAPI...")
# search = GoogleSearch({
# "q": "waste management India",
# "tbm": "nws",
# "api_key": API_KEY
# })
# results = search.get_dict()
# if "news_results" in results:
# news = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
# return news
# else:
# return []
# # Function to fetch hackathons and webinars using SerpAPI
# def fetch_hackathons_serpapi():
# st.info("Fetching hackathons and webinars related to waste management using SerpAPI...")
# search = GoogleSearch({
# "q": "waste management hackathon OR webinar",
# "tbm": "nws",
# "api_key": API_KEY
# })
# results = search.get_dict()
# if "news_results" in results:
# hackathons = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
# return hackathons
# else:
# return []
# # Function to fetch government initiatives using SerpAPI
# def fetch_government_initiatives_serpapi():
# st.info("Fetching Indian government initiatives on waste management using SerpAPI...")
# search = GoogleSearch({
# "q": "Indian government waste management initiatives",
# "tbm": "nws",
# "api_key": API_KEY
# })
# results = search.get_dict()
# if "news_results" in results:
# initiatives = [{"title": item["title"], "link": item["link"]} for item in results["news_results"][:5]]
# return initiatives
# else:
# return []
# # Streamlit app layout
# def main():
# st.set_page_config(page_title="BinSight", layout="wide")
# st.title("π BinSight - Waste Management & Education")
# st.markdown(
# """
# Welcome to **BinSight**! This platform provides real-time updates on:
# - π° Current news on waste management.
# - π‘ Hackathons and webinars related to waste management.
# - π Indian government initiatives.
# """
# )
# # Tabs for better UI
# tab1, tab2, tab3 = st.tabs(["π° News", "π‘ Hackathons/Webinars", "π Govt Initiatives"])
# # Tab 1: News
# with tab1:
# news = fetch_news_serpapi()
# if news:
# for item in news:
# st.markdown(f"[{item['title']}]({item['link']})")
# else:
# st.warning("No news articles found.")
# # Tab 2: Hackathons/Webinars
# with tab2:
# hackathons = fetch_hackathons_serpapi()
# if hackathons:
# for event in hackathons:
# st.markdown(f"[{event['title']}]({event['link']})")
# else:
# st.warning("No hackathons or webinars found.")
# # Tab 3: Govt Initiatives
# with tab3:
# initiatives = fetch_government_initiatives_serpapi()
# if initiatives:
# for initiative in initiatives:
# st.markdown(f"[{initiative['title']}]({initiative['link']})")
# else:
# st.warning("No government initiatives found.")
# # Footer
# st.sidebar.title("About BinSight")
# st.sidebar.info(
# """
# BinSight is an initiative to educate people about waste management and to connect
# them with events, news, and government programs to make our planet sustainable.
# """
# )
# if __name__ == "__main__":
# main()
# import streamlit as st
# import requests
# from bs4 import BeautifulSoup
# import json
# from serpapi import GoogleSearch
# # Constants for Google Search API (serpapi)
# SERPAPI_API_KEY = "8369b2ad95bdb8602cb3f5da80c056e646691599ea0f5aeb01ea47cf18f28270"
# # Fetch the latest news on waste management
# def fetch_news():
# st.info("Fetching the latest news on waste management...")
# try:
# url = "https://news.google.com/rss/search?q=waste+management"
# response = requests.get(url, timeout=10)
# response.raise_for_status()
# soup = BeautifulSoup(response.content, "xml")
# articles = [entry.title.text for entry in soup.find_all("item")]
# if not articles:
# raise ValueError("No news articles found.")
# return articles
# except Exception as e:
# st.warning(f"Error fetching news: {e}")
# st.info("Searching for waste management news...")
# return fetch_from_google("waste management news")
# # Fetch upcoming webinars and hackathons
# def fetch_webinars_and_hackathons():
# st.info("Fetching upcoming webinars and hackathons on waste management...")
# try:
# url = "https://www.google.com/search?q=waste+management+webinars+hackathons"
# response = requests.get(url, timeout=10)
# response.raise_for_status()
# soup = BeautifulSoup(response.content, "html.parser")
# webinars = [item.text for item in soup.find_all("h3", limit=5)]
# if not webinars:
# raise ValueError("No webinars or hackathons found.")
# return webinars
# except Exception as e:
# st.warning(f"Error fetching webinars: {e}")
# st.info("Searching for webinars and hackathons...")
# return fetch_from_google("waste management webinars hackathons")
# # Fetch Indian government initiatives related to waste management
# def fetch_government_initiatives():
# st.info("Fetching Indian government initiatives on waste management...")
# try:
# url = "https://swachhbharat.mygov.in/"
# response = requests.get(url, timeout=10)
# response.raise_for_status()
# soup = BeautifulSoup(response.content, "html.parser")
# initiatives = [item.text.strip() for item in soup.find_all("h2", limit=5)]
# if not initiatives:
# raise ValueError("No government initiatives found.")
# return initiatives
# except Exception as e:
# st.warning(f"Error fetching government initiatives: {e}")
# st.info("Searching for government initiatives on waste management...")
# return fetch_from_google("Indian government initiatives waste management")
# # Search using Google API (serpapi) for news, webinars, or government initiatives
# def fetch_from_google(query):
# params = {
# "q": query,
# "api_key": SERPAPI_API_KEY,
# "engine": "google",
# }
# search = GoogleSearch(params)
# results = search.get_dict()
# if 'organic_results' not in results:
# return [f"No results found for '{query}'"]
# data = [result['title'] for result in results['organic_results']]
# return data if data else [f"No results found for '{query}'"]
# # Main function to organize everything
# def main():
# st.title("BinSight - Waste Management News, Webinars, and Initiatives")
# # Display News
# st.subheader("Latest News on Waste Management")
# news = fetch_news()
# for item in news:
# st.write(f"- {item}")
# # Display Webinars & Hackathons
# st.subheader("Upcoming Webinars & Hackathons")
# webinars = fetch_webinars_and_hackathons()
# for item in webinars:
# st.write(f"- {item}")
# # Display Government Initiatives
# st.subheader("Indian Government Initiatives on Waste Management")
# initiatives = fetch_government_initiatives()
# for item in initiatives:
# st.write(f"- {item}")
# # Run the Streamlit app
# if __name__ == "__main__":
# main()
# import streamlit as st
# import requests
# from bs4 import BeautifulSoup
# import pandas as pd
# # Function to fetch news articles
# # Function to fetch news articles
# def fetch_news():
# st.info("Fetching latest news on waste management...")
# url = "https://news.google.com/rss/search?q=waste+management+india"
# response = requests.get(url)
# soup = BeautifulSoup(response.content, "lxml-xml") # Use lxml-xml parser
# articles = soup.find_all("item")[:5]
# news = [{"title": item.title.text, "link": item.link.text} for item in articles]
# return news
# # Function to fetch hackathons/webinars
# def fetch_hackathons():
# st.info("Fetching hackathons and webinars related to waste management...")
# url = "https://www.eventbrite.com/d/online/environment--conferences/"
# response = requests.get(url)
# soup = BeautifulSoup(response.text, "html.parser")
# events = soup.find_all("div", {"class": "search-event-card-wrapper"})[:5]
# hackathons = []
# for event in events:
# title = event.find("div", {"class": "eds-event-card__formatted-name--is-clamped"}).text
# link = event.find("a")["href"]
# hackathons.append({"title": title, "link": link})
# return hackathons
# def fetch_government_initiatives():
# st.info("Fetching Indian government initiatives on waste management...")
# # Alternative sources for government initiatives
# urls = [
# "https://mohua.gov.in/",
# "https://sbmurban.org/",
# ]
# initiatives = []
# for url in urls:
# try:
# response = requests.get(url, timeout=10)
# response.raise_for_status()
# soup = BeautifulSoup(response.content, "html.parser")
# # Example: Adjust parsing logic based on the website's structure
# initiatives.extend([item.text.strip() for item in soup.find_all("h2", limit=5)])
# except requests.exceptions.RequestException as e:
# st.warning(f"Could not fetch data from {url}: {e}")
# if not initiatives:
# st.error("No government initiatives found.")
# return ["No data available."]
# return initiatives
# # Streamlit app layout
# def main():
# st.set_page_config(page_title="BinSight", layout="wide")
# st.title("π BinSight - Waste Management & Education")
# st.markdown(
# """
# Welcome to **BinSight**! This platform provides real-time updates on:
# - π° Current news on waste management.
# - π‘ Hackathons and webinars related to waste management.
# - π Indian government initiatives.
# """
# )
# # Tabs for better UI
# tab1, tab2, tab3 = st.tabs(["π° News", "π‘ Hackathons/Webinars", "π Govt Initiatives"])
# # Tab 1: News
# with tab1:
# news = fetch_news()
# if news:
# for item in news:
# st.markdown(f"[{item['title']}]({item['link']})")
# else:
# st.warning("No news articles found.")
# # Tab 2: Hackathons/Webinars
# with tab2:
# hackathons = fetch_hackathons()
# if hackathons:
# for event in hackathons:
# st.markdown(f"[{event['title']}]({event['link']})")
# else:
# st.warning("No hackathons or webinars found.")
# # Tab 3: Govt Initiatives
# with tab3:
# initiatives = fetch_government_initiatives()
# if initiatives:
# for initiative in initiatives:
# st.markdown(f"[{initiative['title']}]({initiative['link']})")
# else:
# st.warning("No government initiatives found.")
# # Footer
# st.sidebar.title("About BinSight")
# st.sidebar.info(
# """
# BinSight is an initiative to educate people about waste management and to connect
# them with events, news, and government programs to make our planet sustainable.
# """
# )
# if __name__ == "__main__":
# main()
|