Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
import streamlit as st | |
import requests | |
st.set_page_config(page_title="SEARCH IATI",layout='wide') | |
st.title("SEARCH IATI Database") | |
var=st.text_input("write keyword") | |
title = var.replace(' ','+') | |
button=st.button("search") | |
if button : | |
st.write("Working on it") |