Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ozzyable
/
transaction-summarizer
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8a3759d
transaction-summarizer
/
app.py
ozzyable
Added files to test i/o
8a3759d
about 1 year ago
raw
Copy download link
history
blame
Safe
181 Bytes
import
streamlit
as
st
transactions = st.text_area(
"Enter your transactions"
).split(
','
).strip()
if
st.button(
"Reset"
,
type
=
"primary"
):
st.write(
f"transaction:
{transactions}
"
)