├── paraarray.txt ├── __pycache__ └── re.cpython-35.pyc ├── README.md ├── req.py └── reviews.txt /paraarray.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anil-matcha/webscraping/master/paraarray.txt -------------------------------------------------------------------------------- /__pycache__/re.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Anil-matcha/webscraping/master/__pycache__/re.cpython-35.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Script to extract reviews from flipkart of a search query such as laptops 2 | 3 | Modules used 4 | Beautifulsoup 5 | Requests 6 | -------------------------------------------------------------------------------- /req.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import sys 3 | from bs4 import BeautifulSoup 4 | import time 5 | def uprint(*objects, sep=' ', end='\n', file=sys.stdout): 6 | enc = file.encoding 7 | if enc == 'UTF-8': 8 | print(*objects, sep=sep, end=end, file=file) 9 | else: 10 | f = lambda obj: str(obj).encode(enc, errors='backslashreplace').decode(enc) 11 | print(*map(f, objects), sep=sep, end=end, file=file) 12 | 13 | #headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'} 14 | payload = {'q':'laptop'} 15 | r = requests.get('http://www.flipkart.com/search', params = payload) 16 | data = r.content.decode(encoding='UTF-8') 17 | f = open("flipkartdata.txt", "w+") 18 | f.write(data) 19 | soup = BeautifulSoup(r.content.decode(encoding='UTF-8'), "lxml") 20 | collection = soup.find_all("div", {"class": "product-unit unit-4 browse-product new-design "}) 21 | href = [] 22 | for c in collection: 23 | a = c.find("a") 24 | href.append(a['href']) 25 | reviewarray = [] 26 | paraarray = [] 27 | linkarray = [] 28 | titles = [] 29 | for link in href: 30 | r = requests.get('http://www.flipkart.com'+link) 31 | content = r.content.decode(encoding='UTF-8') 32 | soup = BeautifulSoup(r.content.decode(encoding='UTF-8'), "lxml") 33 | reviews = soup.find_all('div', {"class": "review bigReview"}) 34 | title = soup.find_all('h1', {"class":"title"}) 35 | for review in reviews: 36 | p = review.find_all("p") 37 | for s in p: 38 | reviewarray.append(s.text+"\n") 39 | sp = review.find_all("span", {"class" : "review-text-full"}) 40 | if(len(sp)==0): 41 | sp = review.find_all("span", {"class" : "review-text"}) 42 | for s1 in sp: 43 | if(s1.text not in paraarray): 44 | paraarray.append(s1.text.strip()) 45 | linkarray.append(link) 46 | if(len(title)==1): 47 | titles.append(title[0].text) 48 | else: 49 | titles.append("Deafult") 50 | time.sleep(1) 51 | f = open("reviews.txt", "w+") 52 | f.write(str(reviewarray)) 53 | f = open("paraarray.txt", "w+") 54 | prevlink = "" 55 | for i in range(len(linkarray)): 56 | if(linkarray[i]!=prevlink): 57 | f.write('http://www.flipkart.com'+linkarray[i]+"\n") 58 | f.write(titles[i]+"\n") 59 | f.write(paraarray[i]+"\n") 60 | prevlink = linkarray[i] 61 | else: 62 | f.write(paraarray[i]+"\n") -------------------------------------------------------------------------------- /reviews.txt: -------------------------------------------------------------------------------- 1 | ['Satyabrata Panda\n', 'Oct 4, 2015\n', 'Good performance with Windows 10 out of the box\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rahul Pandey\n', 'Sep 10, 2015\n', 'Best Budget Laptop with great design !\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Vijay Gajera\n', 'Oct 23, 2015\n', "Don't think, Just buy it\n", 'Was this review helpful? \xa0Yes\xa0No\n', 'Soumen Naskar\n', 'Sep 1, 2015\n', 'Good budget option.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Abhinav Bakshi\n', 'Nov 3, 2015\n', 'RM is 1600 MHz and not 800 MHz as posted by Awijeet\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rohit Saini\n', 'Oct 21, 2015\n', 'awesome product at awesome price point\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'ABHIK JAIN\n', 'Sep 26, 2015\n', 'Good Product !\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mohit Jain\n', 'Oct 24, 2015\n', 'Gr8 in looks, Powerful in Performance!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Alfred Thomas\n', 'Oct 8, 2015\n', 'Best Value for Money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'dr. pankaj sahu\n', 'Oct 30, 2015\n', 'got 4gb hynix ddr2 800mhz ram instead of 4gb 1600mhz ram\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Prem Ranjan\n', 'Mar 13, 2016\n', 'Best buy if you want to spent less and feature good.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Naidu Nallamilli\n', 'Apr 3, 2016\n', 'good and worth for the money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sivabaghiyam G\n', 'Apr 3, 2016\n', 'Requesting for Quotation\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sandeep Verma\n', 'Apr 2, 2016\n', 'Best in budget.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'princy jain\n', 'Mar 25, 2016\n', 'Amazing laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Aman\n', 'Nov 22, 2015\n', 'Good Value for money but Drivers Issue\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Abhishek Das\n', 'Feb 22, 2016\n', 'Product is average \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'ravi\n', 'Feb 4, 2016\n', 'worst product of hp at 27k ..\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'PHK\n', 'Dec 28, 2015\n', 'value for money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'satyam \n', 'Mar 27, 2016\n', 'average ....\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ravi Teja Kothapalli\n', 'Jan 14, 2016\n', 'nice product within 26000 range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Channabasava R K\n', 'Apr 12, 2016\n', 'Nice product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sunil Nanwal\n', 'Mar 22, 2016\n', 'About HP laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Amol Chaskar\n', 'Feb 26, 2016\n', 'Best Laptop in this price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'vishnu Kulkarni\n', 'Feb 3, 2016\n', 'satisfied\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Gopal Kamat\n', 'Feb 27, 2016\n', 'Nice little laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Keshavaram Holla\n', 'Mar 11, 2016\n', 'Laptop Ideapad - Overall Impression: Above good\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Manjunath D\n', 'Feb 23, 2016\n', 'Great Buy!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Allam\n', 'Apr 13, 2016\n', 'Mixed feelings\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankit \n', 'Feb 23, 2016\n', 'Great buy\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mazhar Shaikh\n', 'Mar 7, 2016\n', 'Ideapad 100\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankita Roy\n', 'Apr 16, 2016\n', 'Good product from Lenovo.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Zubin Sachdeva\n', 'Apr 10, 2016\n', 'Quality is very bad\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Amiya Dixit\n', 'Apr 9, 2016\n', 'Awesome Laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Vaman Mistry\n', 'Apr 1, 2016\n', 'Lenovo IdeaPad 100-14IBD 80RK002UIH \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'atul patnaik\n', 'Dec 7, 2015\n', 'On a better side\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'edwin james\n', 'Nov 21, 2015\n', 'good\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Itty\n', 'Feb 19, 2016\n', 'A decent product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'SANJEEV RAJ\n', 'Feb 6, 2016\n', 'awesome product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Nandeesh N\n', 'Mar 27, 2016\n', 'Nice product with few cons\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Maestro\n', 'Jan 29, 2016\n', 'Good Deal\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'san\n', 'Dec 24, 2015\n', 'excellent........*******\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Yayati Naresh\n', 'Mar 8, 2016\n', 'Nice to have this configuration in this budget\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Prasit De\n', 'Mar 4, 2016\n', 'A Very Good option for a 40k bugdet\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mukunth\n', 'Apr 20, 2016\n', 'Good work \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rahul Bhat\n', 'Nov 4, 2015\n', 'THINGS TO KNOW\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Amit Dubey\n', 'Dec 25, 2015\n', 'Drivers\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Murali Mohan\n', 'Nov 6, 2015\n', 'Laptop is worth \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ajit Singh Bhati\n', 'Oct 16, 2015\n', 'windows 8/8.1 drivers not available on the hp support site \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Vibek Sharma\n', 'Feb 4, 2016\n', 'Worth buying this laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'ARUN BASANTIA\n', 'Oct 22, 2015\n', 'for this price laptop is best\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'rahul sharma\n', 'Oct 20, 2015\n', 'full money power\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'JEKIL PANCHOLI\n', 'Nov 7, 2015\n', 'AVERAGE LAPTOP\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Parthasarthi Malani\n', 'Nov 3, 2015\n', 'Driver is big mess with this laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankit Giri\n', 'Nov 24, 2015\n', 'It is worth of price.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Piyush Ranjan\n', 'Feb 28, 2016\n', 'super\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'ravi\n', 'Mar 17, 2016\n', 'awesome laptop in this range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Shankar Prasad\n', 'Mar 17, 2016\n', 'Great for everyday office use\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'CA RAVI KHANAL\n', 'Mar 17, 2016\n', 'Good In this Price Change\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Shubham Jain\n', 'Apr 19, 2016\n', 'Full value for money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Girish\n', 'Apr 19, 2016\n', 'So So product,\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Piyush\n', 'Apr 16, 2016\n', 'value for money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Alok Kumar Singh\n', 'Apr 12, 2016\n', 'Good AMD A8 processor\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Manikanta Kadiri\n', 'Feb 28, 2016\n', 'You get what you pay!!!!!!!!!!!!!!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Akash Roy\n', 'Jan 6, 2016\n', 'Performance for the price is astonishing\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'M L Narasimha\n', 'Feb 8, 2016\n', 'its good \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ntihesh Shettigar\n', 'Jan 30, 2016\n', 'Good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sudipta Mitra\n', 'Apr 12, 2016\n', 'Excellent Laptop in this price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Manu\n', 'Apr 3, 2016\n', 'Go for it\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'MANISH DAFDA\n', 'Mar 26, 2016\n', 'Value For Money!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'soubhik kumar mitra\n', 'Mar 24, 2016\n', 'Product working perfectly fine ....\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Biswashree Panda\n', 'Mar 23, 2016\n', 'select with empty mind\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Subhanil Karak\n', 'Mar 19, 2016\n', 'Good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Avinash Ramesh\n', 'Jan 10, 2016\n', 'The Best Laptop Ever in this decade\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'MUTHURAMAN ANNAMALAI\n', 'Jan 26, 2016\n', 'Kudos to Flipkart \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Chudamani\n', 'Jan 24, 2016\n', 'Best intel i5 6th Gen laptop within this price range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Arpit Sharma\n', 'Jan 23, 2016\n', 'fine experience\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'sanjay mathur\n', 'Jan 26, 2016\n', 'Best value for money you spend on 26 JAN 2016.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Shubham Dhiman\n', 'Feb 23, 2016\n', 'Best laptop in this price range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sayak Mukhopadhyay\n', 'Feb 9, 2016\n', 'Great Machine\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'sachin joshi\n', 'Feb 3, 2016\n', 'good laptop with few minor cons\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'avaneesh Singh\n', 'Apr 2, 2016\n', 'well performance , well looking.........\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Suresh Mishra\n', 'Apr 2, 2016\n', 'Hardware and warranty issues\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Saranya V Santhanem\n', 'Apr 4, 2016\n', 'Good one!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'koushik\n', 'Mar 18, 2016\n', 'Awesome for the price!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Umesh Raaj\n', 'Mar 4, 2016\n', 'A Budget Steal\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Chetan Kakhandki\n', 'Oct 25, 2015\n', 'Good for the price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Divyanshu Singh\n', 'Feb 20, 2016\n', 'LATEST OF EVERYTHING; And of course the BEST\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sushant Pachipulusu\n', 'Nov 2, 2015\n', 'Great laptop with awesome specs at this price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankur\n', 'Oct 26, 2015\n', 'Bad display\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'durga varaprasad.M\n', 'Dec 25, 2015\n', 'Bad Display\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Subhra Roy Chowdhury\n', 'Mar 28, 2016\n', "Wastage of 46k! don't go for it\n", 'Was this review helpful? \xa0Yes\xa0No\n', 'Biswajit Mandal\n', 'Nov 23, 2015\n', 'Good product in this price range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Manshul Goel\n', 'Nov 14, 2015\n', 'should not be bought\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Abhishek Thakur\n', 'Oct 31, 2015\n', 'Excellent offer for an overall awesome device\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sanket hegde\n', 'Dec 7, 2015\n', 'AWESOME LAPPY!!!!!!!!!!!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Shrivatsa M\n', 'Aug 7, 2015\n', 'ok laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'rj sam\n', 'Apr 3, 2016\n', 'very good , exellent\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Om Sairam\n', 'Mar 23, 2016\n', 'Best product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rajesh Mukherjee\n', 'Mar 13, 2016\n', 'Very Good Laptop in affordable price !\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Verma\n', 'Mar 6, 2016\n', 'Very good buy at decent price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'SMIT SAVALIA\n', 'Feb 4, 2016\n', 'A nice laptop for small business and home\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ashu\n', 'Jan 21, 2016\n', 'Decently average - However touch pad is irritating\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Kunal Handa\n', 'Dec 28, 2015\n', 'Value For Money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Kalpesh Patel\n', 'Apr 19, 2016\n', 'Budget Compact Laptop!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'choyang tsepa\n', 'Apr 18, 2016\n', 'best in the given price range of 30k\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Kishan\n', 'Apr 18, 2016\n', 'Value for money good laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sohom Barai\n', 'Apr 18, 2016\n', 'Overall Good Product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'PUNEET TANDON\n', 'Apr 7, 2016\n', 'Great laptop!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'harshit tiwari\n', 'Apr 6, 2016\n', 'better not to go for it.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Amit singh\n', 'Mar 23, 2016\n', 'Awesome laptop with useless window...\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sam#\n', 'Mar 18, 2016\n', 'Worthy product!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sumeet More\n', 'Mar 10, 2016\n', 'Value for money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Nikhil Gupta\n', 'Jan 1, 2015\n', 'touch pad problem\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Arun Pragatheesh R\n', 'Dec 2, 2014\n', 'Good laptop for the price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Sanyam Gupta\n', 'Mar 30, 2015\n', 'Looks good but not for long\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'ASAD MALIK\n', 'Jan 29, 2016\n', 'BAD..BAD..BAD..\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Shailendra Singh\n', 'Apr 22, 2016\n', 'Exceeds Expectations for its Price\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Firozgar Hansotia\n', 'Apr 4, 2016\n', 'Good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Dr.Praveen G\n', 'Mar 28, 2016\n', 'Good Buy...!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Bopanna PG\n', 'Mar 6, 2016\n', 'Satisfied\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mohammed Hafeez\n', 'Mar 1, 2016\n', 'Definite Buy & Value For Money.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'VHS\n', 'Feb 28, 2016\n', 'Really good\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Saurav Srivastava\n', 'Dec 11, 2015\n', 'Worth every single Rupee.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'HaPpY OnE\n', 'Aug 14, 2015\n', 'Flipkart Rocks\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Karan Dama\n', 'Oct 22, 2015\n', 'Good Product Overall\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'midhun v sankar\n', 'Sep 3, 2015\n', '100 % value for your money \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rajesh Rao\n', 'Aug 10, 2015\n', 'Waste of Cost\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mitul Vasa\n', 'Oct 27, 2015\n', 'Great Value for Money product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mohith Raghavan\n', 'Jan 4, 2016\n', 'Good one !\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankan Biswas\n', 'Nov 3, 2015\n', 'Good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Koushik Vicky\n', 'Nov 10, 2015\n', "Don't buy\n", 'Was this review helpful? \xa0Yes\xa0No\n', 'praveen\n', 'Nov 30, 2015\n', 'awesome, but warranty start before 4 months it delivered.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Pranav Kakde\n', 'Jun 27, 2015\n', 'Bang For The Buck! Just Go for it! Perfect performance 14" out there!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Faiz\n', 'Dec 29, 2015\n', 'Some Clarifications around issues reported .\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Hameed Zaini\n', 'Jun 28, 2015\n', 'Great Value!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Dibyayan Ghosh\n', 'Jun 29, 2015\n', 'Awesome Laptop at 25K ......\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Aneesh poondla\n', 'Jun 26, 2015\n', 'Dont buy!!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Alok\n', 'Sep 14, 2015\n', 'Awesome Laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'HARI SANKAR.S\n', 'Oct 2, 2015\n', 'Great Product! People please confirm before posting........\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankush Banerjee\n', 'Nov 28, 2015\n', 'Gaming (and general) Review for this rig\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'AadY\n', 'Nov 15, 2015\n', 'A Nice Product From lenovo\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Lakshay\n', 'Jul 22, 2015\n', 'BEAST...........!!!!!!!!!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'AVI CHAUDHARY\n', 'Feb 22, 2016\n', 'value for money\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Aman \n', 'Mar 9, 2016\n', 'A perfect gaming Laptop in this Price Range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Somsubha Das Majumder\n', 'Mar 21, 2016\n', 'What a Delivery\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Apurva Vaishnav\n', 'Jan 26, 2016\n', 'Nice\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Vineeth Kasula\n', 'Mar 28, 2016\n', 'superbb laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'DIL\n', 'Mar 28, 2016\n', 'Worth of Money!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'KUMAR PRASHANT\n', 'Apr 12, 2016\n', 'LAPTOP is pretty Good\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Ankit Kumar Maheshwari\n', 'Apr 5, 2016\n', 'Nice laptop \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Oishik Goswami\n', 'Dec 7, 2015\n', 'Great Product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Baljinder Singh\n', 'Jan 27, 2016\n', 'awesome lappy\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Gurpreet Grover\n', 'Jan 2, 2016\n', 'Drivers issue 64 bit\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Vitthal Patil\n', 'Feb 19, 2016\n', 'good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'rakesh kotian\n', 'Feb 18, 2016\n', 'Best in class laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Srinivas Reddy\n', 'Dec 23, 2015\n', 'Good product\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mukesh Singh\n', 'Apr 12, 2016\n', 'Best laptop at this price range\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'vinit tomar\n', 'Apr 8, 2016\n', 'I liked it\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Rythem Bansal\n', 'Mar 22, 2016\n', 'Amazing laptop!\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mit Panchani\n', 'Mar 12, 2016\n', "Won't Regret Your Purchase \n", 'Was this review helpful? \xa0Yes\xa0No\n', 'Kaustubh Tendulkar\n', 'Jan 14, 2016\n', 'Superb Laptop. Great Design by HP. Thanks Flipkart :)\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Chandra\n', 'Feb 28, 2016\n', 'Good Laptop but not a great one\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Praveen Barak\n', 'Mar 8, 2016\n', 'grinding sound\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Jaiswal\n', 'Feb 22, 2016\n', 'poor wifi\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'jai maurya\n', 'Mar 4, 2016\n', 'Has major issues in hard disc and No software installation \n', 'Was this review helpful? \xa0Yes\xa0No\n', 'sarath kumar\n', 'Feb 12, 2016\n', 'replacing the laptop twice\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Kedharnath reddy\n', 'Feb 29, 2016\n', 'Problem with hard drive in laptop\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Jayanta Bhowmick\n', 'Apr 11, 2016\n', 'GREAT BUY.\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'Mayank Pathak\n', 'Apr 13, 2016\n', 'Best Laptop in its Class\n', 'Was this review helpful? \xa0Yes\xa0No\n', 'somesh dave\n', 'Apr 1, 2016\n', 'just brought it from flipcart\n', 'Was this review helpful? \xa0Yes\xa0No\n'] --------------------------------------------------------------------------------