├── .gitignore ├── README.md ├── analyze_merchants.py ├── app.py ├── app_2.py ├── backup ├── app_backup.py ├── category_backup.html ├── insights_backup.html ├── time_backup.html ├── transactions_backup.html └── yearly_backup.html ├── docs ├── api_design.md ├── api_reference.md ├── deployment_guide.md ├── faq.md └── user_guide.md ├── requirements.txt ├── static ├── css │ └── style.css └── js │ └── utils.js └── templates ├── base.html ├── category.html ├── index.html ├── insights.html ├── monthly.html ├── settings.html ├── time.html ├── transactions.html └── yearly.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/README.md -------------------------------------------------------------------------------- /analyze_merchants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/analyze_merchants.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/app.py -------------------------------------------------------------------------------- /app_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/app_2.py -------------------------------------------------------------------------------- /backup/app_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/app_backup.py -------------------------------------------------------------------------------- /backup/category_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/category_backup.html -------------------------------------------------------------------------------- /backup/insights_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/insights_backup.html -------------------------------------------------------------------------------- /backup/time_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/time_backup.html -------------------------------------------------------------------------------- /backup/transactions_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/transactions_backup.html -------------------------------------------------------------------------------- /backup/yearly_backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/backup/yearly_backup.html -------------------------------------------------------------------------------- /docs/api_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/docs/api_design.md -------------------------------------------------------------------------------- /docs/api_reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/docs/api_reference.md -------------------------------------------------------------------------------- /docs/deployment_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/docs/deployment_guide.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/docs/user_guide.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/static/js/utils.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/category.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/insights.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/insights.html -------------------------------------------------------------------------------- /templates/monthly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/monthly.html -------------------------------------------------------------------------------- /templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/settings.html -------------------------------------------------------------------------------- /templates/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/time.html -------------------------------------------------------------------------------- /templates/transactions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/transactions.html -------------------------------------------------------------------------------- /templates/yearly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hessel2333/alipay_record_analysis/HEAD/templates/yearly.html --------------------------------------------------------------------------------