|
import streamlit as st
|
|
import json
|
|
from calculation import calculate_tax
|
|
import datetime
|
|
import gspread
|
|
from google.oauth2.service_account import Credentials
|
|
|
|
|
|
st.title("Income Tax Calculator (FY 2025-26)")
|
|
|
|
|
|
st.markdown(
|
|
'<span title="This is for educational purposes and the calculations may not be accurate for all sections. We do not collect any PII.">ℹ️ </span>',
|
|
unsafe_allow_html=True
|
|
)
|
|
|
|
|
|
with st.form(key='tax_form'):
|
|
user_input = st.text_input("Enter Your Gross Salary (e.g., 1300000 or 13,00,000):")
|
|
submit_button = st.form_submit_button(label='Submit')
|
|
|
|
if submit_button and user_input:
|
|
|
|
user_input = user_input.replace(",", "").replace("L", "00000").replace("lakhs", "00000").replace(" ", "")
|
|
|
|
try:
|
|
salary = int(user_input)
|
|
st.write("Tax Breakdown:")
|
|
st.write("-" * 20)
|
|
|
|
|
|
result = calculate_tax(salary)
|
|
st.markdown(f"```\n{result}\n```")
|
|
|
|
|
|
timestamp = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
|
|
|
|
|
|
|
|
|
|
scopes = [
|
|
'https://www.googleapis.com/auth/spreadsheets',
|
|
'https://www.googleapis.com/auth/drive'
|
|
]
|
|
|
|
if "GOOGLE_CREDS" in st.secrets:
|
|
|
|
service_account_info = json.loads(st.secrets["GOOGLE_CREDS"])
|
|
credentials = Credentials.from_service_account_info(service_account_info, scopes=scopes)
|
|
else:
|
|
|
|
credentials = Credentials.from_service_account_file('creds.json', scopes=scopes)
|
|
|
|
|
|
gc = gspread.authorize(credentials)
|
|
|
|
|
|
sheet = gc.open("IncomeTaxEntry").sheet1
|
|
sheet.append_row([salary, timestamp])
|
|
|
|
except ValueError:
|
|
st.error("Please enter a valid number format for salary.")
|
|
|
|
|
|
st.markdown(
|
|
"""
|
|
<div style="text-align: center; font-size: 15px;">
|
|
<a href="https://www.linkedin.com/in/dushmanta-k-sahu-a4b18318/" target="_blank">Visit my LinkedIn Profile</a>
|
|
</div>
|
|
""",
|
|
unsafe_allow_html=True
|
|
)
|
|
|