{"id":35266603,"url":"https://github.com/saifrehman100/expense-tracker-aws","last_synced_at":"2026-05-01T08:32:35.996Z","repository":{"id":329362738,"uuid":"1119078419","full_name":"saifrehman100/expense-tracker-aws","owner":"saifrehman100","description":"AI-powered expense tracking microservices on AWS. Upload receipts, auto-extract data with OCR (Textract), smart categorization (Comprehend), budget alerts, and spending reports. Serverless architecture using Lambda, DynamoDB, S3, SES, and SAM.","archived":false,"fork":false,"pushed_at":"2025-12-19T02:32:16.000Z","size":68,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T00:34:40.639Z","etag":null,"topics":["api-gateway","aws","aws-lambda","budget-tracker","cognito","comprehend","dynamodb","expense-tracker","fastapi","microservices","ocr","python3","receipt-scanner","s3","sam","serverless","ses","textract"],"latest_commit_sha":null,"homepage":"","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/saifrehman100.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-18T17:53:37.000Z","updated_at":"2025-12-19T02:38:01.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/saifrehman100/expense-tracker-aws","commit_stats":null,"previous_names":["saifrehman100/expense-tracker-aws"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/saifrehman100/expense-tracker-aws","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saifrehman100%2Fexpense-tracker-aws","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saifrehman100%2Fexpense-tracker-aws/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saifrehman100%2Fexpense-tracker-aws/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saifrehman100%2Fexpense-tracker-aws/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saifrehman100","download_url":"https://codeload.github.com/saifrehman100/expense-tracker-aws/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saifrehman100%2Fexpense-tracker-aws/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32490810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["api-gateway","aws","aws-lambda","budget-tracker","cognito","comprehend","dynamodb","expense-tracker","fastapi","microservices","ocr","python3","receipt-scanner","s3","sam","serverless","ses","textract"],"created_at":"2025-12-30T10:48:00.119Z","updated_at":"2026-05-01T08:32:35.984Z","avatar_url":"https://github.com/saifrehman100.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Smart Expense Tracker with Receipt OCR\n\nA production-ready serverless expense tracking application built on AWS with automated receipt processing using OCR and AI.\n\n## Features\n\n- **Receipt OCR**: Automatically extract expense data from receipt images using AWS Textract\n- **Smart Categorization**: AI-powered expense categorization using AWS Comprehend\n- **Budget Management**: Set budgets and receive alerts when approaching limits\n- **Expense Reports**: Generate weekly/monthly reports with email delivery\n- **User Authentication**: Secure authentication using AWS Cognito\n- **REST API**: Full-featured API for expense management\n- **CSV Export**: Export expenses for external analysis\n\n## Architecture\n\nBuilt using AWS serverless architecture:\n- **Lambda**: Serverless compute for all business logic\n- **API Gateway**: RESTful API endpoints\n- **DynamoDB**: NoSQL database for expenses, budgets, and receipts\n- **S3**: Object storage for receipt images\n- **Cognito**: User authentication and authorization\n- **Textract**: OCR for receipt processing\n- **Comprehend**: AI-powered categorization\n- **SES**: Email notifications and reports\n\n## Prerequisites\n\n- AWS Account\n- AWS CLI configured\n- AWS SAM CLI installed\n- Python 3.11+\n- Docker (for local testing)\n\n## Quick Start\n\n### 1. Install Dependencies\n\n```bash\npip install -r requirements.txt\n```\n\n### 2. Configure Environment\n\n```bash\ncp .env.example .env\n# Edit .env with your configuration\n```\n\n### 3. Build and Deploy\n\n```bash\n# Build the application\nsam build\n\n# Deploy with guided deployment\nsam deploy --guided\n```\n\n### 4. Post-Deployment Setup\n\n```bash\n# Setup Cognito User Pool\n./scripts/setup_cognito.sh\n\n# Verify SES Email\n./scripts/setup_ses.sh your-email@example.com\n\n# Seed Test Data (Optional)\npython3 ./scripts/seed_data.py\n```\n\n## API Documentation\n\nSee [docs/API.md](docs/API.md) for complete API reference.\n\n## Local Development\n\n```bash\n# Start LocalStack\ncd local \u0026\u0026 docker-compose up -d\n\n# Run tests\npytest --cov=src\n\n# Start API locally\nsam local start-api\n```\n\n## Project Structure\n\n```\nexpense-tracker-aws/\n├── src/                      # Source code\n│   ├── auth/                 # Authentication service\n│   ├── receipts/             # Receipt upload service\n│   ├── ocr_processor/        # OCR processing service\n│   ├── expenses/             # Expense management service\n│   ├── budgets/              # Budget management service\n│   ├── reports/              # Report generation service\n│   └── shared/               # Shared utilities\n├── tests/                    # Test files\n├── scripts/                  # Setup scripts\n├── local/                    # Local development\n├── docs/                     # Documentation\n├── template.yaml             # SAM template\n└── requirements.txt          # Dependencies\n```\n\n## Documentation\n\n- [API Documentation](docs/API.md)\n- [Architecture Overview](docs/ARCHITECTURE.md)\n- [Deployment Guide](docs/DEPLOYMENT.md)\n\n## License\n\nMIT License","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaifrehman100%2Fexpense-tracker-aws","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaifrehman100%2Fexpense-tracker-aws","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaifrehman100%2Fexpense-tracker-aws/lists"}