ppsingh's picture
Create app.py
0130713 verified
raw
history blame
268 Bytes
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")