f64 commited on
Commit
2e750d5
·
1 Parent(s): fe41ef2
Files changed (1) hide show
  1. CTAPT.py +12 -2
CTAPT.py CHANGED
@@ -1,4 +1,4 @@
1
- import os, re, sys, time, math, shutil, urllib, string, random, pickle, zipfile, datetime
2
  import streamlit as st, pandas as pd, numpy as np
3
 
4
  st.set_page_config(page_title="Предсказание V", page_icon="🦋", layout="wide", initial_sidebar_state="expanded")
@@ -21,5 +21,15 @@ st.sidebar.markdown(f"Your favorite command is **{favorite_command}** 🎚️")
21
 
22
 
23
  with st.container():
24
- st.write(os.getcwd())
 
 
 
 
 
 
 
 
 
 
25
  st.write(os.listdir())
 
1
+ import os, re, sys, time, math, shutil, urllib, string, random, pickle, zipfile, datetime, platform
2
  import streamlit as st, pandas as pd, numpy as np
3
 
4
  st.set_page_config(page_title="Предсказание V", page_icon="🦋", layout="wide", initial_sidebar_state="expanded")
 
21
 
22
 
23
  with st.container():
24
+ dirParams = {
25
+ "os.getcwd": os.getcwd(),
26
+ "platform": platform.platform(),
27
+ "node": platform.node(),
28
+ "processor": platform.processor(),
29
+ "machine": platform.machine(),
30
+ "system": platform.system() ,
31
+ "version": platform.version() ,
32
+ "architecture": platform.architecture(),
33
+ }
34
+ st.write(dirParams)
35
  st.write(os.listdir())