Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 268 Bytes
0130713 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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") |