Skip to content

Instantly share code, notes, and snippets.

View vishwanath79's full-sized avatar

Vishwanath Subramanian vishwanath79

View GitHub Profile
@vishwanath79
vishwanath79 / tripadvisor_scraper.py
Last active June 5, 2017 04:36
Extract data from tripadvisor hotel
#!/usr/bin/env python
from datetime import datetime
from time import time
from lxml import html, etree
import requests, re
import os, sys
import unicodecsv as csv
import argparse
@vishwanath79
vishwanath79 / MacOS_Install_OpenCV.py
Last active May 9, 2019 17:35
Install OpenCV on Mac OS Sierra on Python 3.5
# 1. Download and install the latest Anaconda distribution from https://www.continuum.io/downloads#macos
# 2. Create a new Python environment. Make sure you choose python 3.5 as your python version for the virtual environment:
conda create -n myenv python=3.5
# 3. Activate the new environment using:
source activate myenv