Spaces:
Runtime error
Runtime error
detect cwd
Browse files
app.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import shutil
|
| 2 |
import streamlit as st
|
| 3 |
|
|
@@ -12,3 +13,4 @@ if b:
|
|
| 12 |
st.write("Total: %d GiB" % (total // (2**30)))
|
| 13 |
st.write("Used: %d GiB" % (used // (2**30)))
|
| 14 |
st.write("Free: %d GiB" % (free // (2**30)))
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
import shutil
|
| 3 |
import streamlit as st
|
| 4 |
|
|
|
|
| 13 |
st.write("Total: %d GiB" % (total // (2**30)))
|
| 14 |
st.write("Used: %d GiB" % (used // (2**30)))
|
| 15 |
st.write("Free: %d GiB" % (free // (2**30)))
|
| 16 |
+
st.write(os.getcwd())
|