Google Search¶

import streamlit as st
import requests
import yaml
from urllib.parse import urlencode

phrase = st.text_input("Phrase", placeholder="radio")
google = "https://www.google.com/search"

site = "https://docs.streamlit.io/"
params = {
    "q": f"{phrase} site:{site}"
}

st.write(f"{google}?{urlencode(params)}")

if st.button("Find"):
    response = requests.get(google, params=params)
    st.write(response.url)

lit

Navigation

Contents:

  • Note-AI
  • Udemy
  • Obsidian Chat (LI)
  • Obsidian-AI
  • Obsidian Web Editor
  • Obsidian Bases
  • Neo RAG
  • Book Chat (LC) - Updated for LangChain v1
  • Book Chat (LI)
  • LlamaIndex Extractors
  • Llamaindex Router
  • Time Intervals
  • Markdown Viewer
  • Pandoc UI
  • Grafana Panels
  • Grafana Stats
  • Jira Stats
  • Explain Java
  • Code Review
  • FB Prompts Edit
  • FB Prompts Xml
  • Doc-Note
  • Upload File
  • EPUB TOC
  • POM CSV
  • exc yaml
  • exc UI
  • exc histo
  • curl clean
  • Сравнение папок
  • AsciiDoc links
  • Google Search
  • Ollama Chat
  • Compare Properties
  • Rasp Hotkeys
  • Create Image
  • Albums
  • GMail Clean
  • YouTube Transcript
  • Bilingua
  • Шашки
  • Persisted List

Related Topics

  • Documentation overview
    • Previous: AsciiDoc links
    • Next: Ollama Chat
©2025, EA. | Powered by PyLit 3.1.1 & Sphinx 8.2.3 & Alabaster 1.0.0 | Page source