├── .gitattributes ├── Inside VC ├── clean_file.py ├── create_df.py ├── fufu.csv ├── fufu_new.csv ├── running_file.py ├── ruru.csv ├── ruru_fix.csv ├── url_scraper.py └── vc_scraper.py ├── angellist └── angel_sel.py ├── doordash └── doordash_sel.py ├── eat24 └── eat24hours.py ├── facebook ├── fb_scrap_python3.py └── fb_scrap_status.py ├── glassdoor ├── .idea │ ├── Glassdoor.iml │ ├── misc.xml │ ├── modules.xml │ ├── vcs.xml │ └── workspace.xml ├── MSFT_benefits.csv ├── MSFT_interview.csv ├── MSFT_jobs.csv ├── MSFT_ratings.csv ├── MSFT_review.csv ├── YHOO_benefits.csv ├── YHOO_interview.csv ├── YHOO_jobs.csv ├── YHOO_ratings.csv ├── YHOO_review.csv ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── glassdoor_benefits.cpython-36.pyc │ ├── glassdoor_extra.cpython-36.pyc │ ├── glassdoor_final.cpython-36.pyc │ ├── glassdoor_interviews.cpython-36.pyc │ ├── glassdoor_jobs.cpython-36.pyc │ └── glassdoor_ratings.cpython-36.pyc ├── glassdoor.py ├── glassdoor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── glassdoor_benefits.cpython-36.pyc │ │ ├── glassdoor_extra.cpython-36.pyc │ │ ├── glassdoor_final.cpython-36.pyc │ │ ├── glassdoor_interviews.cpython-36.pyc │ │ ├── glassdoor_jobs.cpython-36.pyc │ │ ├── glassdoor_ratings.cpython-36.pyc │ │ └── glassdoor_reviews.cpython-36.pyc │ ├── glassdoor.py │ ├── glassdoor_benefits.py │ ├── glassdoor_interviews.py │ ├── glassdoor_jobs.py │ ├── glassdoor_ratings.py │ ├── glassdoor_reviews.py │ └── input_fields.csv ├── glassdoor_benefits.py ├── glassdoor_interviews.py ├── glassdoor_jobs.py ├── glassdoor_ratings.py ├── glassdoor_reviews.py ├── input_fields.csv └── setup.py ├── instagram ├── Instagram.csv ├── Instagram.zip ├── Instagram │ ├── Instagram.csv │ ├── Scraper_INSTAGRAM.py │ ├── get_proxy.py │ ├── ghostdriver.log │ ├── proxy_file.txt │ ├── urls.txt │ └── urls_scraped.txt ├── Scraper_INSTAGRAM.py ├── followers.txt ├── following.txt ├── get_proxy.py ├── ghostdriver.log ├── insta.py ├── insta2.py ├── insta_3.py ├── insta_followers.py ├── old Text │ ├── followers_o.txt │ └── following.txt ├── proxy_file.txt ├── urls.txt ├── urls_scraped.txt └── yelp_business.py ├── linkedin ├── final_observation.json ├── linkedin_2018.py ├── linkedin_observations.py ├── upwork_linkedin_scrap_final.py └── upwork_linkedin_scrap_final_jobs.py ├── morningstar ├── APPB_sample.json ├── BJRI_sample.json ├── CAKE_sample.json ├── CHIL_sample.json ├── RRGB_sample.json ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ └── good_morning.cpython-36.pyc ├── empty_keep.txt ├── good_download.py ├── good_morning.py ├── jscraper.py ├── jscraper.pyc └── morningstarscraper.py ├── similarweb ├── similarweb_sel.py └── similarweb_sel_snow.py ├── spyfu └── spyfu.py └── yelp ├── APPB_locations.csv ├── BJRI_locations.csv ├── BJ’s-Restaurant-&-Brewhouse.csv ├── CAKE_locations.csv ├── CHIL_locations.csv ├── CPKI_locations.csv ├── NEW ├── 180828 Mining_Data_R.xlsx ├── 180905 Global_Ecosystem_Data_R.xlsx ├── 180905 Miners.xlsx ├── 180911 Backup Mining.xlsx ├── 180911 Mining_Authoritative_Data_R - Copy.xlsx ├── 180911 Mining_Data_R.xlsx ├── 180921 Global_Ecosystem_Data_R.xlsx └── 180921 Mining_Authoritative_Data_R.xlsx ├── RRGB_locations.csv ├── Scrape ├── Wefunder Results.txt ├── Wefunder.csv.csv └── fundnel.xlsx ├── TGIF_locations.csv ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc ├── one.cpython-36.pyc ├── yelp_scrapy.cpython-36.pyc └── yelp_scrapy_nearest.cpython-36.pyc ├── one.py ├── yelp_info.py ├── yelp_reviews.py ├── yelp_run ├── 2.py ├── yelp_scrapy_proxy_urls.py └── yelp_scrapy_single_proxy.py └── yelp_scrapy_nearest.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/.gitattributes -------------------------------------------------------------------------------- /Inside VC/clean_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/clean_file.py -------------------------------------------------------------------------------- /Inside VC/create_df.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/create_df.py -------------------------------------------------------------------------------- /Inside VC/fufu.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/fufu.csv -------------------------------------------------------------------------------- /Inside VC/fufu_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/fufu_new.csv -------------------------------------------------------------------------------- /Inside VC/running_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/running_file.py -------------------------------------------------------------------------------- /Inside VC/ruru.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/ruru.csv -------------------------------------------------------------------------------- /Inside VC/ruru_fix.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/ruru_fix.csv -------------------------------------------------------------------------------- /Inside VC/url_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/url_scraper.py -------------------------------------------------------------------------------- /Inside VC/vc_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/Inside VC/vc_scraper.py -------------------------------------------------------------------------------- /angellist/angel_sel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/angellist/angel_sel.py -------------------------------------------------------------------------------- /doordash/doordash_sel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/doordash/doordash_sel.py -------------------------------------------------------------------------------- /eat24/eat24hours.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/eat24/eat24hours.py -------------------------------------------------------------------------------- /facebook/fb_scrap_python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/facebook/fb_scrap_python3.py -------------------------------------------------------------------------------- /facebook/fb_scrap_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/facebook/fb_scrap_status.py -------------------------------------------------------------------------------- /glassdoor/.idea/Glassdoor.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/.idea/Glassdoor.iml -------------------------------------------------------------------------------- /glassdoor/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/.idea/misc.xml -------------------------------------------------------------------------------- /glassdoor/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/.idea/modules.xml -------------------------------------------------------------------------------- /glassdoor/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/.idea/vcs.xml -------------------------------------------------------------------------------- /glassdoor/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/.idea/workspace.xml -------------------------------------------------------------------------------- /glassdoor/MSFT_benefits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/MSFT_benefits.csv -------------------------------------------------------------------------------- /glassdoor/MSFT_interview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/MSFT_interview.csv -------------------------------------------------------------------------------- /glassdoor/MSFT_jobs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/MSFT_jobs.csv -------------------------------------------------------------------------------- /glassdoor/MSFT_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/MSFT_ratings.csv -------------------------------------------------------------------------------- /glassdoor/MSFT_review.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/MSFT_review.csv -------------------------------------------------------------------------------- /glassdoor/YHOO_benefits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/YHOO_benefits.csv -------------------------------------------------------------------------------- /glassdoor/YHOO_interview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/YHOO_interview.csv -------------------------------------------------------------------------------- /glassdoor/YHOO_jobs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/YHOO_jobs.csv -------------------------------------------------------------------------------- /glassdoor/YHOO_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/YHOO_ratings.csv -------------------------------------------------------------------------------- /glassdoor/YHOO_review.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/YHOO_review.csv -------------------------------------------------------------------------------- /glassdoor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glassdoor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_benefits.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_benefits.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_extra.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_extra.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_final.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_final.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_interviews.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_interviews.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_jobs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_jobs.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/__pycache__/glassdoor_ratings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/__pycache__/glassdoor_ratings.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_benefits.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_benefits.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_extra.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_extra.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_final.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_final.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_interviews.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_interviews.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_jobs.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_jobs.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_ratings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_ratings.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/__pycache__/glassdoor_reviews.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/__pycache__/glassdoor_reviews.cpython-36.pyc -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor_benefits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor_benefits.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor_interviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor_interviews.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor_jobs.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor_ratings.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/glassdoor_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/glassdoor_reviews.py -------------------------------------------------------------------------------- /glassdoor/glassdoor/input_fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor/input_fields.csv -------------------------------------------------------------------------------- /glassdoor/glassdoor_benefits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor_benefits.py -------------------------------------------------------------------------------- /glassdoor/glassdoor_interviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor_interviews.py -------------------------------------------------------------------------------- /glassdoor/glassdoor_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor_jobs.py -------------------------------------------------------------------------------- /glassdoor/glassdoor_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor_ratings.py -------------------------------------------------------------------------------- /glassdoor/glassdoor_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/glassdoor_reviews.py -------------------------------------------------------------------------------- /glassdoor/input_fields.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/input_fields.csv -------------------------------------------------------------------------------- /glassdoor/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/glassdoor/setup.py -------------------------------------------------------------------------------- /instagram/Instagram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram.csv -------------------------------------------------------------------------------- /instagram/Instagram.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram.zip -------------------------------------------------------------------------------- /instagram/Instagram/Instagram.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/Instagram.csv -------------------------------------------------------------------------------- /instagram/Instagram/Scraper_INSTAGRAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/Scraper_INSTAGRAM.py -------------------------------------------------------------------------------- /instagram/Instagram/get_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/get_proxy.py -------------------------------------------------------------------------------- /instagram/Instagram/ghostdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/ghostdriver.log -------------------------------------------------------------------------------- /instagram/Instagram/proxy_file.txt: -------------------------------------------------------------------------------- 1 | 138.197.137.90:8080 -------------------------------------------------------------------------------- /instagram/Instagram/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/urls.txt -------------------------------------------------------------------------------- /instagram/Instagram/urls_scraped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Instagram/urls_scraped.txt -------------------------------------------------------------------------------- /instagram/Scraper_INSTAGRAM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/Scraper_INSTAGRAM.py -------------------------------------------------------------------------------- /instagram/followers.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /instagram/following.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /instagram/get_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/get_proxy.py -------------------------------------------------------------------------------- /instagram/ghostdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/ghostdriver.log -------------------------------------------------------------------------------- /instagram/insta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/insta.py -------------------------------------------------------------------------------- /instagram/insta2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/insta2.py -------------------------------------------------------------------------------- /instagram/insta_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/insta_3.py -------------------------------------------------------------------------------- /instagram/insta_followers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/insta_followers.py -------------------------------------------------------------------------------- /instagram/old Text/followers_o.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/old Text/followers_o.txt -------------------------------------------------------------------------------- /instagram/old Text/following.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/old Text/following.txt -------------------------------------------------------------------------------- /instagram/proxy_file.txt: -------------------------------------------------------------------------------- 1 | 40.87.66.157:80 -------------------------------------------------------------------------------- /instagram/urls.txt: -------------------------------------------------------------------------------- 1 | https://www.instagram.com/hagen155075/ 2 | -------------------------------------------------------------------------------- /instagram/urls_scraped.txt: -------------------------------------------------------------------------------- 1 | 2 | https://www.instagram.com/bjsrestaurants/ 3 | -------------------------------------------------------------------------------- /instagram/yelp_business.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/instagram/yelp_business.py -------------------------------------------------------------------------------- /linkedin/final_observation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/linkedin/final_observation.json -------------------------------------------------------------------------------- /linkedin/linkedin_2018.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/linkedin/linkedin_2018.py -------------------------------------------------------------------------------- /linkedin/linkedin_observations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/linkedin/linkedin_observations.py -------------------------------------------------------------------------------- /linkedin/upwork_linkedin_scrap_final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/linkedin/upwork_linkedin_scrap_final.py -------------------------------------------------------------------------------- /linkedin/upwork_linkedin_scrap_final_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/linkedin/upwork_linkedin_scrap_final_jobs.py -------------------------------------------------------------------------------- /morningstar/APPB_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/APPB_sample.json -------------------------------------------------------------------------------- /morningstar/BJRI_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/BJRI_sample.json -------------------------------------------------------------------------------- /morningstar/CAKE_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/CAKE_sample.json -------------------------------------------------------------------------------- /morningstar/CHIL_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/CHIL_sample.json -------------------------------------------------------------------------------- /morningstar/RRGB_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/RRGB_sample.json -------------------------------------------------------------------------------- /morningstar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /morningstar/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /morningstar/__pycache__/good_morning.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/__pycache__/good_morning.cpython-36.pyc -------------------------------------------------------------------------------- /morningstar/empty_keep.txt: -------------------------------------------------------------------------------- 1 | XNAS:bjri 2 | XNYS:cmg -------------------------------------------------------------------------------- /morningstar/good_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/good_download.py -------------------------------------------------------------------------------- /morningstar/good_morning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/good_morning.py -------------------------------------------------------------------------------- /morningstar/jscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/jscraper.py -------------------------------------------------------------------------------- /morningstar/jscraper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/jscraper.pyc -------------------------------------------------------------------------------- /morningstar/morningstarscraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/morningstar/morningstarscraper.py -------------------------------------------------------------------------------- /similarweb/similarweb_sel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/similarweb/similarweb_sel.py -------------------------------------------------------------------------------- /similarweb/similarweb_sel_snow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/similarweb/similarweb_sel_snow.py -------------------------------------------------------------------------------- /spyfu/spyfu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/spyfu/spyfu.py -------------------------------------------------------------------------------- /yelp/APPB_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/APPB_locations.csv -------------------------------------------------------------------------------- /yelp/BJRI_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/BJRI_locations.csv -------------------------------------------------------------------------------- /yelp/BJ’s-Restaurant-&-Brewhouse.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/BJ’s-Restaurant-&-Brewhouse.csv -------------------------------------------------------------------------------- /yelp/CAKE_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/CAKE_locations.csv -------------------------------------------------------------------------------- /yelp/CHIL_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/CHIL_locations.csv -------------------------------------------------------------------------------- /yelp/CPKI_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/CPKI_locations.csv -------------------------------------------------------------------------------- /yelp/NEW/180828 Mining_Data_R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180828 Mining_Data_R.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180905 Global_Ecosystem_Data_R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180905 Global_Ecosystem_Data_R.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180905 Miners.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180905 Miners.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180911 Backup Mining.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180911 Backup Mining.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180911 Mining_Authoritative_Data_R - Copy.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180911 Mining_Authoritative_Data_R - Copy.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180911 Mining_Data_R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180911 Mining_Data_R.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180921 Global_Ecosystem_Data_R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180921 Global_Ecosystem_Data_R.xlsx -------------------------------------------------------------------------------- /yelp/NEW/180921 Mining_Authoritative_Data_R.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/NEW/180921 Mining_Authoritative_Data_R.xlsx -------------------------------------------------------------------------------- /yelp/RRGB_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/RRGB_locations.csv -------------------------------------------------------------------------------- /yelp/Scrape/Wefunder Results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/Scrape/Wefunder Results.txt -------------------------------------------------------------------------------- /yelp/Scrape/Wefunder.csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/Scrape/Wefunder.csv.csv -------------------------------------------------------------------------------- /yelp/Scrape/fundnel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/Scrape/fundnel.xlsx -------------------------------------------------------------------------------- /yelp/TGIF_locations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/TGIF_locations.csv -------------------------------------------------------------------------------- /yelp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yelp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /yelp/__pycache__/one.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/__pycache__/one.cpython-36.pyc -------------------------------------------------------------------------------- /yelp/__pycache__/yelp_scrapy.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/__pycache__/yelp_scrapy.cpython-36.pyc -------------------------------------------------------------------------------- /yelp/__pycache__/yelp_scrapy_nearest.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/__pycache__/yelp_scrapy_nearest.cpython-36.pyc -------------------------------------------------------------------------------- /yelp/one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/one.py -------------------------------------------------------------------------------- /yelp/yelp_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_info.py -------------------------------------------------------------------------------- /yelp/yelp_reviews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_reviews.py -------------------------------------------------------------------------------- /yelp/yelp_run/2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_run/2.py -------------------------------------------------------------------------------- /yelp/yelp_run/yelp_scrapy_proxy_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_run/yelp_scrapy_proxy_urls.py -------------------------------------------------------------------------------- /yelp/yelp_run/yelp_scrapy_single_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_run/yelp_scrapy_single_proxy.py -------------------------------------------------------------------------------- /yelp/yelp_scrapy_nearest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firmai/scrapers/HEAD/yelp/yelp_scrapy_nearest.py --------------------------------------------------------------------------------