├── .gitignore ├── LICENSE.md ├── Procfile ├── README.md ├── account_utilities.py ├── db_queries.py ├── model.py ├── mortgage_calculator.py ├── postgis_setup_notes.txt ├── rent_scraper ├── rent_scraper │ ├── __init__.py │ ├── items.py │ ├── middlewares.py │ ├── model.py │ ├── pipelines.py │ ├── rental_sample_source_code.html │ ├── sample_source_code.html │ ├── settings.py │ └── spiders │ │ ├── __init__.py │ │ └── craigslist.py └── scrapy.cfg ├── requirements.txt ├── runtime.txt ├── server.py ├── server_test.py ├── static ├── css │ └── styles.css ├── favicon.ico ├── images │ ├── database_model.png │ ├── favicon.png │ ├── investable_1.png │ ├── investable_2.png │ ├── pexels-photo-261187.jpeg │ └── pw_pattern.png └── js │ └── scripts.js ├── templates ├── account.html ├── base.html ├── index.html ├── login.html └── registration.html ├── zillow_utilities.py └── zillow_utilities_test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/README.md -------------------------------------------------------------------------------- /account_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/account_utilities.py -------------------------------------------------------------------------------- /db_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/db_queries.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/model.py -------------------------------------------------------------------------------- /mortgage_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/mortgage_calculator.py -------------------------------------------------------------------------------- /postgis_setup_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/postgis_setup_notes.txt -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/items.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/middlewares.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/middlewares.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/model.py: -------------------------------------------------------------------------------- 1 | ../../model.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/pipelines.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/rental_sample_source_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/rental_sample_source_code.html -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/sample_source_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/sample_source_code.html -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/settings.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/spiders/__init__.py -------------------------------------------------------------------------------- /rent_scraper/rent_scraper/spiders/craigslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/rent_scraper/spiders/craigslist.py -------------------------------------------------------------------------------- /rent_scraper/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/rent_scraper/scrapy.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-2.7.13 2 | 3 | -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/server.py -------------------------------------------------------------------------------- /server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/server_test.py -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/database_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/database_model.png -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/investable_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/investable_1.png -------------------------------------------------------------------------------- /static/images/investable_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/investable_2.png -------------------------------------------------------------------------------- /static/images/pexels-photo-261187.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/pexels-photo-261187.jpeg -------------------------------------------------------------------------------- /static/images/pw_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/images/pw_pattern.png -------------------------------------------------------------------------------- /static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/static/js/scripts.js -------------------------------------------------------------------------------- /templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/templates/account.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/templates/registration.html -------------------------------------------------------------------------------- /zillow_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/zillow_utilities.py -------------------------------------------------------------------------------- /zillow_utilities_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jttyeung/investable/HEAD/zillow_utilities_test.py --------------------------------------------------------------------------------