f64
commited on
Commit
·
3f0a88b
1
Parent(s):
bf0d601
CTAPT.py
CHANGED
|
@@ -27,8 +27,9 @@ st.sidebar.markdown(f"Your favorite command is **{favorite_command}** 🎚️")
|
|
| 27 |
|
| 28 |
with st.container():
|
| 29 |
cols1 = st.columns([4,4,4,4])
|
|
|
|
| 30 |
dirParams = {
|
| 31 |
-
"psutil.virtual_memory":
|
| 32 |
"os.getcwd": os.getcwd(),
|
| 33 |
"cpu_count": os.cpu_count(),
|
| 34 |
#"environ": os.environ,
|
|
|
|
| 27 |
|
| 28 |
with st.container():
|
| 29 |
cols1 = st.columns([4,4,4,4])
|
| 30 |
+
psutil_virtual_memory = psutil.virtual_memory()
|
| 31 |
dirParams = {
|
| 32 |
+
"psutil.virtual_memory": psutil_virtual_memory,
|
| 33 |
"os.getcwd": os.getcwd(),
|
| 34 |
"cpu_count": os.cpu_count(),
|
| 35 |
#"environ": os.environ,
|