Skip to content

Latest commit

 

History

History
68 lines (42 loc) · 1.48 KB

File metadata and controls

68 lines (42 loc) · 1.48 KB

🔢 Simple Calculator App (Python Flask)

A web-based calculator built using Flask (Python) as the backend. This app allows users to perform basic arithmetic operations — addition, subtraction, multiplication, and division — through a clean and responsive web interface. The calculation is handled server-side, and results are displayed in real-time after form submission.


🚀 Features

  • ✅ Perform basic arithmetic operations
  • 🧠 Server-side evaluation using Python
  • 🎨 Clean and responsive HTML/CSS UI
  • 📦 Lightweight and easy to deploy

🛠 Tech Stack

Technology Description
Python Programming Language
Flask Web Framework (Backend)
HTML/CSS Frontend UI
Jinja2 Templating Engine

📁 Project Structure

simple_calculator_flask/ ├── app.py ├── templates/ │ └── index.html ├── static/ │ └── style.css

📸 Screenshot

portfolio1


✅ Future Improvements Use a safe expression evaluator (e.g. ast or sympy)

Add history of calculations

Keyboard support for better UX

Dark mode styling option

1. Clone the Repository

git clone https://github.com/arundogra/simple-calculator.git

cd simple_calculator_flask

:- Install Flask
pip install flask

:- Run the App
python app.py

:- Open in Browser
http://127.0.0.1:5000/