├── .gitignore ├── .slugignore ├── Aptfile ├── Item_Labels.py ├── Media └── demo_result.png ├── Procfile ├── README.md ├── classify_item.py ├── date_regex.py ├── eval.py ├── local_server.py ├── model.pth ├── my_data.py ├── my_models └── __init__.py ├── my_utils.py ├── requirements.txt ├── runtime.txt ├── server.py ├── static ├── css │ ├── .Rhistory │ ├── bootstrap.min.css │ ├── circle.css │ ├── imgareaselect-default.css │ ├── magnific-popup.css │ ├── main.css │ ├── owl.carousel.min.css │ ├── owl.theme.default.min.css │ ├── responsive.css │ ├── results.css │ ├── style.css │ ├── transactions.css │ ├── typography.css │ └── util.css ├── fonts │ ├── font-awesome-4.7.0 │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── iconic │ │ ├── css │ │ │ ├── material-design-iconic-font.css │ │ │ └── material-design-iconic-font.min.css │ │ └── fonts │ │ │ ├── Material-Design-Iconic-Font.eot │ │ │ ├── Material-Design-Iconic-Font.svg │ │ │ ├── Material-Design-Iconic-Font.ttf │ │ │ ├── Material-Design-Iconic-Font.woff │ │ │ └── Material-Design-Iconic-Font.woff2 │ └── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf ├── images │ ├── 8acf51119eb579c2870ab91f33b60d9a--expense-tracker-app-store.png │ ├── Sheraz.png │ ├── Xavier.png │ ├── banner-after.png │ ├── banner.svg │ ├── bg-01.jpg │ ├── bg.png │ ├── blue.png │ ├── chatbot.png │ ├── dots.gif │ ├── family.png │ ├── favicon.png │ ├── features │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 2d 3d.svg │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── ar lips.svg │ │ ├── mix n match.svg │ │ ├── model faces.svg │ │ ├── resolution.svg │ │ └── trak.svg │ ├── footer-before.png │ ├── green.png │ ├── hein.png │ ├── img1.png │ ├── invest.png │ ├── invoice.png │ ├── logo.png │ ├── logo_black.png │ ├── red.png │ ├── reminder.png │ ├── screenshots │ │ ├── 1.jpeg │ │ ├── 1.png │ │ ├── 2.jpeg │ │ ├── 2.png │ │ ├── 3.jpeg │ │ ├── 4.jpeg │ │ └── 5.jpeg │ ├── upload copy.png │ ├── upload.png │ ├── work-bg.png │ └── yellow.png └── scripts │ ├── Graph │ ├── bar.html │ └── expense-tracker-7e30c-mukund-export.json │ ├── chart.js │ ├── chart_month.js │ ├── chart_week.js │ ├── chart_year.js │ ├── firebase.js │ ├── jquery.imgareaselect.pack.js │ ├── jquery.min.js │ ├── js │ ├── app.min.js │ ├── bootstrap.min.js │ ├── circle.js │ ├── custom.js │ ├── jquery-3.3.1.min.js │ ├── main.js │ ├── owl.carousel2.3.4.js │ ├── owl.carousel2.3.4.min.js │ ├── popper.min.js │ └── wow.min.js │ ├── transactions.js │ ├── transactions_backup.js │ └── upload.js ├── templates ├── categorisation.html ├── chart.html ├── crop.html ├── demo_crop.html ├── demo_result.html ├── index.html ├── login.html ├── result.html ├── result_verification.html ├── signup.html ├── transaction.html └── upload.html └── test_data ├── 2.jpg ├── 6.jpg ├── 8.png ├── a1.jpg ├── a2.jpg ├── a2.png ├── a3.jpg ├── a5.jpg ├── a6.jpg ├── b2.jpg ├── b3.jpg ├── b4.jpg └── test1.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .atom 3 | .pyc 4 | __pycache__/ 5 | Web_Interface/static/uploads/* -------------------------------------------------------------------------------- /.slugignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore -------------------------------------------------------------------------------- /Aptfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/Aptfile -------------------------------------------------------------------------------- /Item_Labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/Item_Labels.py -------------------------------------------------------------------------------- /Media/demo_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/Media/demo_result.png -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn server:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/README.md -------------------------------------------------------------------------------- /classify_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/classify_item.py -------------------------------------------------------------------------------- /date_regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/date_regex.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/eval.py -------------------------------------------------------------------------------- /local_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/local_server.py -------------------------------------------------------------------------------- /model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/model.pth -------------------------------------------------------------------------------- /my_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/my_data.py -------------------------------------------------------------------------------- /my_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/my_models/__init__.py -------------------------------------------------------------------------------- /my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/my_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.0 2 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/server.py -------------------------------------------------------------------------------- /static/css/.Rhistory: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/circle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/circle.css -------------------------------------------------------------------------------- /static/css/imgareaselect-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/imgareaselect-default.css -------------------------------------------------------------------------------- /static/css/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/magnific-popup.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/owl.carousel.min.css -------------------------------------------------------------------------------- /static/css/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/owl.theme.default.min.css -------------------------------------------------------------------------------- /static/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/responsive.css -------------------------------------------------------------------------------- /static/css/results.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/results.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/css/transactions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/transactions.css -------------------------------------------------------------------------------- /static/css/typography.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/typography.css -------------------------------------------------------------------------------- /static/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/css/util.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/animated.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/core.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/fixed-width.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/font-awesome.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/icons.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/larger.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/list.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/mixins.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/path.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/screen-reader.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/stacked.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/less/variables.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_animated.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_core.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_icons.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_larger.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_list.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_mixins.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_path.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_stacked.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/_variables.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss -------------------------------------------------------------------------------- /static/fonts/iconic/css/material-design-iconic-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/css/material-design-iconic-font.css -------------------------------------------------------------------------------- /static/fonts/iconic/css/material-design-iconic-font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/css/material-design-iconic-font.min.css -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.eot -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.svg -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.ttf -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff -------------------------------------------------------------------------------- /static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/iconic/fonts/Material-Design-Iconic-Font.woff2 -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /static/images/8acf51119eb579c2870ab91f33b60d9a--expense-tracker-app-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/8acf51119eb579c2870ab91f33b60d9a--expense-tracker-app-store.png -------------------------------------------------------------------------------- /static/images/Sheraz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/Sheraz.png -------------------------------------------------------------------------------- /static/images/Xavier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/Xavier.png -------------------------------------------------------------------------------- /static/images/banner-after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/banner-after.png -------------------------------------------------------------------------------- /static/images/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/banner.svg -------------------------------------------------------------------------------- /static/images/bg-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/bg-01.jpg -------------------------------------------------------------------------------- /static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/bg.png -------------------------------------------------------------------------------- /static/images/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/blue.png -------------------------------------------------------------------------------- /static/images/chatbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/chatbot.png -------------------------------------------------------------------------------- /static/images/dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/dots.gif -------------------------------------------------------------------------------- /static/images/family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/family.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/features/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/1.png -------------------------------------------------------------------------------- /static/images/features/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/2.png -------------------------------------------------------------------------------- /static/images/features/2d 3d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/2d 3d.svg -------------------------------------------------------------------------------- /static/images/features/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/3.png -------------------------------------------------------------------------------- /static/images/features/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/4.png -------------------------------------------------------------------------------- /static/images/features/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/5.png -------------------------------------------------------------------------------- /static/images/features/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/6.png -------------------------------------------------------------------------------- /static/images/features/ar lips.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/ar lips.svg -------------------------------------------------------------------------------- /static/images/features/mix n match.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/mix n match.svg -------------------------------------------------------------------------------- /static/images/features/model faces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/model faces.svg -------------------------------------------------------------------------------- /static/images/features/resolution.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/resolution.svg -------------------------------------------------------------------------------- /static/images/features/trak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/features/trak.svg -------------------------------------------------------------------------------- /static/images/footer-before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/footer-before.png -------------------------------------------------------------------------------- /static/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/green.png -------------------------------------------------------------------------------- /static/images/hein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/hein.png -------------------------------------------------------------------------------- /static/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/img1.png -------------------------------------------------------------------------------- /static/images/invest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/invest.png -------------------------------------------------------------------------------- /static/images/invoice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/invoice.png -------------------------------------------------------------------------------- /static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/logo.png -------------------------------------------------------------------------------- /static/images/logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/logo_black.png -------------------------------------------------------------------------------- /static/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/red.png -------------------------------------------------------------------------------- /static/images/reminder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/reminder.png -------------------------------------------------------------------------------- /static/images/screenshots/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/1.jpeg -------------------------------------------------------------------------------- /static/images/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/1.png -------------------------------------------------------------------------------- /static/images/screenshots/2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/2.jpeg -------------------------------------------------------------------------------- /static/images/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/2.png -------------------------------------------------------------------------------- /static/images/screenshots/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/3.jpeg -------------------------------------------------------------------------------- /static/images/screenshots/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/4.jpeg -------------------------------------------------------------------------------- /static/images/screenshots/5.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/screenshots/5.jpeg -------------------------------------------------------------------------------- /static/images/upload copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/upload copy.png -------------------------------------------------------------------------------- /static/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/upload.png -------------------------------------------------------------------------------- /static/images/work-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/work-bg.png -------------------------------------------------------------------------------- /static/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/images/yellow.png -------------------------------------------------------------------------------- /static/scripts/Graph/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/Graph/bar.html -------------------------------------------------------------------------------- /static/scripts/Graph/expense-tracker-7e30c-mukund-export.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/Graph/expense-tracker-7e30c-mukund-export.json -------------------------------------------------------------------------------- /static/scripts/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/chart.js -------------------------------------------------------------------------------- /static/scripts/chart_month.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/chart_month.js -------------------------------------------------------------------------------- /static/scripts/chart_week.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/chart_week.js -------------------------------------------------------------------------------- /static/scripts/chart_year.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/chart_year.js -------------------------------------------------------------------------------- /static/scripts/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/firebase.js -------------------------------------------------------------------------------- /static/scripts/jquery.imgareaselect.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/jquery.imgareaselect.pack.js -------------------------------------------------------------------------------- /static/scripts/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/jquery.min.js -------------------------------------------------------------------------------- /static/scripts/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/app.min.js -------------------------------------------------------------------------------- /static/scripts/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/scripts/js/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/circle.js -------------------------------------------------------------------------------- /static/scripts/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/custom.js -------------------------------------------------------------------------------- /static/scripts/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /static/scripts/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/main.js -------------------------------------------------------------------------------- /static/scripts/js/owl.carousel2.3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/owl.carousel2.3.4.js -------------------------------------------------------------------------------- /static/scripts/js/owl.carousel2.3.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/owl.carousel2.3.4.min.js -------------------------------------------------------------------------------- /static/scripts/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/popper.min.js -------------------------------------------------------------------------------- /static/scripts/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/js/wow.min.js -------------------------------------------------------------------------------- /static/scripts/transactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/transactions.js -------------------------------------------------------------------------------- /static/scripts/transactions_backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/transactions_backup.js -------------------------------------------------------------------------------- /static/scripts/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/static/scripts/upload.js -------------------------------------------------------------------------------- /templates/categorisation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/categorisation.html -------------------------------------------------------------------------------- /templates/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/chart.html -------------------------------------------------------------------------------- /templates/crop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/crop.html -------------------------------------------------------------------------------- /templates/demo_crop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/demo_crop.html -------------------------------------------------------------------------------- /templates/demo_result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/demo_result.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/result.html -------------------------------------------------------------------------------- /templates/result_verification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/result_verification.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templates/transaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/transaction.html -------------------------------------------------------------------------------- /templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/templates/upload.html -------------------------------------------------------------------------------- /test_data/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/2.jpg -------------------------------------------------------------------------------- /test_data/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/6.jpg -------------------------------------------------------------------------------- /test_data/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/8.png -------------------------------------------------------------------------------- /test_data/a1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a1.jpg -------------------------------------------------------------------------------- /test_data/a2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a2.jpg -------------------------------------------------------------------------------- /test_data/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a2.png -------------------------------------------------------------------------------- /test_data/a3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a3.jpg -------------------------------------------------------------------------------- /test_data/a5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a5.jpg -------------------------------------------------------------------------------- /test_data/a6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/a6.jpg -------------------------------------------------------------------------------- /test_data/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/b2.jpg -------------------------------------------------------------------------------- /test_data/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/b3.jpg -------------------------------------------------------------------------------- /test_data/b4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/b4.jpg -------------------------------------------------------------------------------- /test_data/test1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shubham99bisht/Expense-Tracker/HEAD/test_data/test1.jpg --------------------------------------------------------------------------------