In [3]:
from bs4 import BeautifulSoup
import urllib2,urlparse
import sys,os
sys.path.append("/opt/livingdata/lib")
from livdatcsvlib import *
baseurl="http://environicsindia.in/index.php/en/gallery1/photos/mmp-ec-meeting-vizag"
webcontent=urllib2.urlopen(baseurl).read()
soup = BeautifulSoup(webcontent,'html.parser')
links=[]
In [ ]: