{"id":28919443,"url":"https://github.com/jeslipriya/expense_tracker","last_synced_at":"2026-04-28T17:02:09.845Z","repository":{"id":290592923,"uuid":"974972236","full_name":"jeslipriya/EXPENSE_TRACKER","owner":"jeslipriya","description":"A full-stack Flask web app that helps users track their income, expenses, and savings in a clean dashboard with auto-generated visual graphs and category-wise spending analysis.","archived":false,"fork":false,"pushed_at":"2025-08-23T15:43:02.000Z","size":333,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-24T05:58:16.268Z","etag":null,"topics":["expense-tracker","flask","flask-application","fullstack","html","matplotlib","personal-finance-manager"],"latest_commit_sha":null,"homepage":"https://expense-tracker-rou2.onrender.com","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jeslipriya.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-29T15:25:26.000Z","updated_at":"2025-08-23T15:43:05.000Z","dependencies_parsed_at":"2025-08-24T01:39:47.270Z","dependency_job_id":null,"html_url":"https://github.com/jeslipriya/EXPENSE_TRACKER","commit_stats":null,"previous_names":["jeslipriya/expense_tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jeslipriya/EXPENSE_TRACKER","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeslipriya%2FEXPENSE_TRACKER","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeslipriya%2FEXPENSE_TRACKER/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeslipriya%2FEXPENSE_TRACKER/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeslipriya%2FEXPENSE_TRACKER/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeslipriya","download_url":"https://codeload.github.com/jeslipriya/EXPENSE_TRACKER/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeslipriya%2FEXPENSE_TRACKER/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32390067,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["expense-tracker","flask","flask-application","fullstack","html","matplotlib","personal-finance-manager"],"created_at":"2025-06-22T03:30:48.826Z","updated_at":"2026-04-28T17:02:09.840Z","avatar_url":"https://github.com/jeslipriya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Expense Tracker Web Application\n\nA full-stack expense management web application that allows users to track income, expenses, savings, and visualize financial data using interactive graphs. Built using **Flask**, **SQLite**, and **Matplotlib**, it offers insights and spending suggestions based on user input.\n\n## Features\n\n- ✅ User authentication (login/register)\n- ➕ Add income, expenses, and savings transactions\n- 📊 Real-time dashboard with financial metrics\n- 📅 Date and category-based statistics\n- 📈 Interactive financial graphs\n- 🤖 Smart spending analyzer with advice\n- 👤 User profile management\n- 💳 Balance tracking (Income - Expenses - Savings)\n\n## Tech Stack\n\n| Component          | Technology   |\n|--------------------|--------------|\n| Frontend           | HTML5, CSS3  |\n| Backend            | Python Flask |\n| Database           | SQLite3      |\n| Data Visualization | Matplotlib   |\n\n## Project Structure\n\n```\n        EXPENSE_TRACKER/ \n            │ ├── static/ \n                │ ├── css/ \n                │ │ └── style.css \n                │ └── graphs/ \n                │ │ └── graph_X.png (auto-generated) \n            │ ├── templates/ \n                │ ├── base.html \n                │ ├── index.html \n                │ ├── dashboard.html \n                │ ├── add_expense.html \n                │ ├── statistics.html \n                │ └── stats_result.html \n            │ ├── utils/ \n                │ ├── analyzer.py \n                │ ├── filters.py \n                │ └── graph.py \n            │ ├── app.py \n            ├── expense_data.db (auto-gemerated)\n            ├── requirements.txt \n            ├── .env\n            └── .gitignore\n```\n## Getting Started\n\n### Prerequisites\n- Python 3.6+\n- pip\n\n### Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/jeslipriya/EXPENSE_TRACKER.git\ncd EXPENSE_TRACKER\n```\n\n2. Install dependencies:\n```\npip install -r requirements.txt\n```\n\n3. Run the application:\n```\npython app.py\n```\n\n4. Access the application at: ```http://127.0.0.1:5000/```\n\n## Configuration\n\nThe .gitignore file include:\n```\n\u003c!-- graph images --\u003e\n/static/graphs/ \n*.png\n\n\u003c!-- database --\u003e\n*.db\n\n\u003c!-- complied files --\u003e\n__pycache__/\n*.pyc\n\n\u003c!-- Ignore virtual environment --\u003e\nvenv/\n.env\n\n```\n\n## Future Improvements\n\n- Data export (PDF/CSV)\n- Monthly budget goals\n- Recurring transactions\n- Email notifications\n- Mobile-responsive design\n\n## License\n\nThis project is not licensed and for **educational purpose**, **do not modify this code.**\n\n## Author\n### Jesli\nComputer Science Student\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeslipriya%2Fexpense_tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeslipriya%2Fexpense_tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeslipriya%2Fexpense_tracker/lists"}