Update app.py
Browse files
app.py
CHANGED
@@ -1,83 +1,35 @@
|
|
1 |
import streamlit as st
|
2 |
import subprocess
|
3 |
|
4 |
-
# Set the page layout to wide mode for
|
5 |
st.set_page_config(page_title="Terminal Command Executor", layout="centered")
|
6 |
|
7 |
-
# Main title
|
8 |
-
st.title("
|
9 |
|
10 |
-
#
|
11 |
-
st.
|
12 |
-
### Simple and intuitive tool to execute terminal commands directly from this interface.
|
13 |
-
Just enter a command, hit the button, and see the output below.
|
14 |
-
""")
|
15 |
|
16 |
-
#
|
17 |
-
command = st.text_input("
|
18 |
|
19 |
# Button to run the command
|
20 |
-
|
21 |
-
|
22 |
-
# Display the output when the command is executed
|
23 |
-
if run_button and command:
|
24 |
-
with st.spinner("Running command..."):
|
25 |
try:
|
26 |
-
#
|
27 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
28 |
-
|
29 |
-
# Display success message and output
|
30 |
-
st.success("✅ Command executed successfully!")
|
31 |
-
st.code(result.stdout, language="bash")
|
32 |
-
|
33 |
-
# Display any errors in red
|
34 |
-
if result.stderr:
|
35 |
-
st.error(f"⚠️ Error:\n{result.stderr}")
|
36 |
-
except Exception as e:
|
37 |
-
st.error(f"❌ Failed to run command: {e}")
|
38 |
-
else:
|
39 |
-
if run_button:
|
40 |
-
st.warning("⚠️ Please enter a command.")
|
41 |
-
|
42 |
-
# Custom CSS to simplify and style the UI
|
43 |
-
st.markdown("""
|
44 |
-
<style>
|
45 |
-
/* Hide footer */
|
46 |
-
footer {visibility: hidden;}
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
width: 100%;
|
53 |
-
padding: 10px;
|
54 |
-
border-radius: 5px;
|
55 |
-
border: 1px solid #3498db;
|
56 |
-
background-color: #f0f4f8;
|
57 |
-
color: #333;
|
58 |
-
}
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
}
|
69 |
-
|
70 |
-
/* Set the success and warning messages to look cleaner */
|
71 |
-
.stAlert {
|
72 |
-
font-size: 15px;
|
73 |
-
}
|
74 |
-
|
75 |
-
/* Customize code display */
|
76 |
-
.stCodeBlock {
|
77 |
-
background-color: #2c3e50;
|
78 |
-
color: #ecf0f1;
|
79 |
-
padding: 10px;
|
80 |
-
border-radius: 5px;
|
81 |
-
}
|
82 |
-
</style>
|
83 |
-
""", unsafe_allow_html=True)
|
|
|
1 |
import streamlit as st
|
2 |
import subprocess
|
3 |
|
4 |
+
# Set the page layout to wide mode for better spacing
|
5 |
st.set_page_config(page_title="Terminal Command Executor", layout="centered")
|
6 |
|
7 |
+
# Main title
|
8 |
+
st.title("🖥️ Simple Terminal Emulator")
|
9 |
|
10 |
+
# Instruction text
|
11 |
+
st.write("Enter a command and see the result below. This works just like your terminal!")
|
|
|
|
|
|
|
12 |
|
13 |
+
# Input field for terminal command
|
14 |
+
command = st.text_input("Enter terminal command", placeholder="e.g., ls, pwd, echo 'Hello World'")
|
15 |
|
16 |
# Button to run the command
|
17 |
+
if st.button("Run Command"):
|
18 |
+
if command:
|
|
|
|
|
|
|
19 |
try:
|
20 |
+
# Execute the terminal command and capture the output
|
21 |
result = subprocess.run(command, shell=True, capture_output=True, text=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
+
# Show the output
|
24 |
+
if result.stdout:
|
25 |
+
st.subheader("Output:")
|
26 |
+
st.code(result.stdout)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
+
# Show any errors if they occur
|
29 |
+
if result.stderr:
|
30 |
+
st.subheader("Error:")
|
31 |
+
st.code(result.stderr)
|
32 |
+
except Exception as e:
|
33 |
+
st.error(f"An error occurred: {e}")
|
34 |
+
else:
|
35 |
+
st.warning("Please enter a command to run.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|