Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
niyaa
/
Sovrenn_Market_Sentiment
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
niyaa
commited on
Oct 20, 2023
Commit
fb2d7e5
·
1 Parent(s):
acecbbf
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
CHANGED
Viewed
@@ -84,6 +84,13 @@ else:
84
85
86
87
Begindatestring = start_date
88
89
84
85
86
87
+
88
+
d0 = start_date
89
+
d1 = dt.date(2008, 1, 1)
90
+
delta = d0 - d1
91
+
92
+
st.write(delta)
93
+
94
Begindatestring = start_date
95
96