├── AAPL_Analysis.csv ├── AAPL_BS.csv ├── AAPL_IS.csv ├── AAPL_Ratios.csv ├── Example - AAPL.xlsx ├── Example - MSFT.xlsx ├── MSFT_Analysis.csv ├── MSFT_BS.csv ├── MSFT_IS.csv ├── MSFT_Ratios.csv ├── README.md ├── app.js ├── assets ├── css │ ├── bootstrap.css │ └── main.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── img │ ├── ipad-hand.png │ ├── p01.png │ ├── p02.png │ ├── p03.png │ ├── pic1.jpg │ ├── pic2.jpg │ ├── pic3.jpg │ ├── ser01.png │ ├── ser02.png │ └── ser03.png └── js │ └── bootstrap.min.js ├── index.html ├── package.json ├── scraper.py └── server.py /AAPL_Analysis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/AAPL_Analysis.csv -------------------------------------------------------------------------------- /AAPL_BS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/AAPL_BS.csv -------------------------------------------------------------------------------- /AAPL_IS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/AAPL_IS.csv -------------------------------------------------------------------------------- /AAPL_Ratios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/AAPL_Ratios.csv -------------------------------------------------------------------------------- /Example - AAPL.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/Example - AAPL.xlsx -------------------------------------------------------------------------------- /Example - MSFT.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/Example - MSFT.xlsx -------------------------------------------------------------------------------- /MSFT_Analysis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/MSFT_Analysis.csv -------------------------------------------------------------------------------- /MSFT_BS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/MSFT_BS.csv -------------------------------------------------------------------------------- /MSFT_IS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/MSFT_IS.csv -------------------------------------------------------------------------------- /MSFT_Ratios.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/MSFT_Ratios.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/app.js -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/css/main.css -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/img/ipad-hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/ipad-hand.png -------------------------------------------------------------------------------- /assets/img/p01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/p01.png -------------------------------------------------------------------------------- /assets/img/p02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/p02.png -------------------------------------------------------------------------------- /assets/img/p03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/p03.png -------------------------------------------------------------------------------- /assets/img/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/pic1.jpg -------------------------------------------------------------------------------- /assets/img/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/pic2.jpg -------------------------------------------------------------------------------- /assets/img/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/pic3.jpg -------------------------------------------------------------------------------- /assets/img/ser01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/ser01.png -------------------------------------------------------------------------------- /assets/img/ser02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/ser02.png -------------------------------------------------------------------------------- /assets/img/ser03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/img/ser03.png -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/package.json -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/scraper.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhemani/Finco./HEAD/server.py --------------------------------------------------------------------------------