A lightweight date calculator built with Python and Streamlit. Enter a start date and a number of days — positive or negative — and instantly see the result with a plain-English breakdown.
Live app: coming soon (deploy via Streamlit Cloud)
- Add or subtract days from any date
- Shows result weekday and a weekend heads-up
- Breaks the total into weeks + remaining days
- Handles edge cases: zero days, large values, negative results
VTime/
├── app.py # Streamlit UI
├── calculator.py # Core date logic (no external dependencies)
├── tests/
│ └── test_calculator.py
├── requirements.txt
└── README.md
pip install -r requirements.txt
streamlit run app.pypytest tests/ -p no:playwright- Push to a public GitHub repo
- Go to share.streamlit.io
- Connect the repo and set
app.pyas the entry point - Deploy — free, no credit card needed