This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Base framework for simple crawlers""" | |
__author__ = "Ankit Vani" | |
__version__ = "0.1" | |
import bs4 | |
import csv | |
import httplib | |
import json | |
import sys | |
import urllib2 |