Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -39,30 +39,3 @@ if st.button("Calculate"):
|
|
39 |
st.error("Error: Division by zero is not allowed!")
|
40 |
except ValueError:
|
41 |
st.error("Invalid input! Please enter numeric values.")
|
42 |
-
|
43 |
-
---
|
44 |
-
|
45 |
-
### Deployment on Hugging Face Spaces
|
46 |
-
|
47 |
-
1. **Sign Up / Log In**: Go to [Hugging Face](https://huggingface.co/).
|
48 |
-
2. **Create a New Space**:
|
49 |
-
- Navigate to **Spaces** → Click **Create New Space**.
|
50 |
-
- Name your Space, set visibility (public/private), and choose **Streamlit** as the framework.
|
51 |
-
3. **Upload Your Code**:
|
52 |
-
- Clone your new Space repository or use the web interface to upload files:
|
53 |
-
- `app.py`: The above Streamlit code.
|
54 |
-
- `requirements.txt`: Contains dependencies. For this app:
|
55 |
-
```
|
56 |
-
streamlit
|
57 |
-
```
|
58 |
-
4. **Commit Changes**: Push the files to the repository. Hugging Face will automatically build and deploy the app.
|
59 |
-
|
60 |
-
---
|
61 |
-
|
62 |
-
### Your App Will Look Like This:
|
63 |
-
1. A dropdown menu for selecting the operation (Addition, Subtraction, Multiplication, Division).
|
64 |
-
2. Input fields for two numbers.
|
65 |
-
3. A "Calculate" button to trigger the computation.
|
66 |
-
4. Results displayed below the button after calculation.
|
67 |
-
|
68 |
-
Let me know if you need help with any specific step!
|
|
|
39 |
st.error("Error: Division by zero is not allowed!")
|
40 |
except ValueError:
|
41 |
st.error("Invalid input! Please enter numeric values.")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|