From 3c44d50fedd9fbfe01cea7d3eb8bf10ca47ae56f Mon Sep 17 00:00:00 2001 From: Mahikshith Date: Sun, 6 Oct 2024 19:27:12 +0530 Subject: [PATCH] Preprocessed and vectore stored preporocessed and added the data in vector store --- mainproject/__init__.py | 0 mainproject/embedstore.py | 55 + mainproject/mykee_retrive.py | 17 + mainproject/pre_preocess.ipynb | 2176 +++++++++++++++++++++++ mainproject/pre_process.py | 26 + requirements.txt | 15 + sample_date/flipkart_product_review.csv | 451 +++++ 7 files changed, 2740 insertions(+) create mode 100644 mainproject/__init__.py create mode 100644 mainproject/embedstore.py create mode 100644 mainproject/mykee_retrive.py create mode 100644 mainproject/pre_preocess.ipynb create mode 100644 mainproject/pre_process.py create mode 100644 requirements.txt create mode 100644 sample_date/flipkart_product_review.csv diff --git a/mainproject/__init__.py b/mainproject/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/mainproject/embedstore.py b/mainproject/embedstore.py new file mode 100644 index 0000000..8c72aee --- /dev/null +++ b/mainproject/embedstore.py @@ -0,0 +1,55 @@ +# Take the data from the documents in pre_process.py and embed it into cassandra database + +import os +import pandas as pd +from dotenv import load_dotenv + +from langchain_astradb import AstraDBVectorStore + +from langchain_google_genai import GoogleGenerativeAIEmbeddings +# getting data +from pre_process import convert_to_doc + +load_dotenv() + +GOOGLE_API_KEY = os.getenv("GOOGLE_API_KEY") + +ASTRA_DB_API_ENDPOINT = os.getenv("ASTRA_END_POINT") + +ASTRA_DB_APPLICATION_TOKEN = os.getenv("ASTRA_TOKEN") + +ASTRA_DB_NAMESPACE = os.getenv("ASTRA_KEYSPACE") + +embeddings = GoogleGenerativeAIEmbeddings(model="models/embedding-001") + +def embed_documents(run_state): +# vector store creation + vector_store = AstraDBVectorStore( + collection_name="mykee_powerful_collection", + embedding=embeddings, + api_endpoint=ASTRA_DB_API_ENDPOINT, + token=ASTRA_DB_APPLICATION_TOKEN, + namespace=ASTRA_DB_NAMESPACE,) + + store=run_state + + if store==None: + docs= convert_to_doc() + inserted_ids = vector_store.add_documents(docs) + else: + return vector_store + return vector_store, inserted_ids + +# testing + +if __name__ == "__main__": + vector_store, inserted_ids = embed_documents(None) + print(len(inserted_ids)) + + ans = vector_store.similarity_search('''tell me what are all the earphones available in flipkart and what is the best + quality earphones among them''', 3) + for each_ans in ans : + print(f"{each_ans.page_content} --- {each_ans.metadata}") + +# ran it for testing -- got results , always make sure to specifyt the embedding model if google api is used + diff --git a/mainproject/mykee_retrive.py b/mainproject/mykee_retrive.py new file mode 100644 index 0000000..79eebc2 --- /dev/null +++ b/mainproject/mykee_retrive.py @@ -0,0 +1,17 @@ + +import google.generativeai as genai +from langchain_google_genai import GoogleGenerativeAI + + +model = genai.GenerativeModel('gemini-1.5-flash') + + +genai.configure(api_key=os.getenv("GOOGLE_API_KEY")) +model = genai.GenerativeModel('gemini-1.5-flash') + + +retriever = vector_store.as_retriever( + search_type="similarity_score_threshold", + search_kwargs={"k": 1, "score_threshold": 0.5}, +) +retriever.invoke("Stealing from the bank is a crime", filter={"source": "news"}) \ No newline at end of file diff --git a/mainproject/pre_preocess.ipynb b/mainproject/pre_preocess.ipynb new file mode 100644 index 0000000..8eba0f1 --- /dev/null +++ b/mainproject/pre_preocess.ipynb @@ -0,0 +1,2176 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Objective : \n", + "\n", + "> The fundamental core idea is what if the user make purchase decisions based on what other people say about the product rather than looking at the overall rating of the product and enables user to naturally converse with the product.\n", + "\n", + "> Think of it like a word of mouth for a movie that your friend suggested and you decided to give it a try rather than looking at imbd or google ratings and what if you can talk to the ratings..." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(r\"C:\\Users\\mahik\\Documents\\Git_serious\\e-commerce-chatbot-end_to_end\\sample_date\\flipkart_product_review.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
product_idproduct_titleratingsummaryreview
0ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Terrific purchase1-more flexible2-bass is very high3-sound clar...
1ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Terrific purchaseSuper sound and good looking I like that prize
2ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Super!Very much satisfied with the device at this pr...
3ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Super!Nice headphone, bass was very good and sound i...
4ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Terrific purchaseSound quality super battery backup super quali...
5ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5WonderfulWowwww it's amezing bluetooth nice look, nice ...
6ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...4Pretty goodAwesome colour! Amazing experience .. but only...
7ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...5Terrific purchaseFor the first time, I am posting a review, jus...
8ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...4DelightfulFirst of all the Delivery boy is a good guy. N...
9ACCFZGAQJGYCYDCMBoAt Rockerz 235v2 with ASAP charging Version ...1WorthlessThis headphone is good but not that much as i ...
\n", + "
" + ], + "text/plain": [ + " product_id product_title \\\n", + "0 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "1 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "2 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "3 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "4 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "5 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "6 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "7 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "8 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "9 ACCFZGAQJGYCYDCM BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "\n", + " rating summary \\\n", + "0 5 Terrific purchase \n", + "1 5 Terrific purchase \n", + "2 5 Super! \n", + "3 5 Super! \n", + "4 5 Terrific purchase \n", + "5 5 Wonderful \n", + "6 4 Pretty good \n", + "7 5 Terrific purchase \n", + "8 4 Delightful \n", + "9 1 Worthless \n", + "\n", + " review \n", + "0 1-more flexible2-bass is very high3-sound clar... \n", + "1 Super sound and good looking I like that prize \n", + "2 Very much satisfied with the device at this pr... \n", + "3 Nice headphone, bass was very good and sound i... \n", + "4 Sound quality super battery backup super quali... \n", + "5 Wowwww it's amezing bluetooth nice look, nice ... \n", + "6 Awesome colour! Amazing experience .. but only... \n", + "7 For the first time, I am posting a review, jus... \n", + "8 First of all the Delivery boy is a good guy. N... \n", + "9 This headphone is good but not that much as i ... " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 450 entries, 0 to 449\n", + "Data columns (total 5 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 product_id 450 non-null object\n", + " 1 product_title 450 non-null object\n", + " 2 rating 450 non-null int64 \n", + " 3 summary 450 non-null object\n", + " 4 review 450 non-null object\n", + "dtypes: int64(1), object(4)\n", + "memory usage: 17.7+ KB\n" + ] + } + ], + "source": [ + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(300, 5)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[~df[\"product_title\"].str.contains(\"BoAt\")].shape" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
product_idproduct_titleratingsummaryreview
340ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...5Classy productNice Products
341ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...5Perfect product!Best in this price Bass 4.5*Sound 4.5*Battery ...
342ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...4DelightfulSuper product very nice
343ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...4Very Goodvery nice
344ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...4Value-for-moneyQuality is good as er price
345ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...4Very GoodGreat product low price best quality ๐Ÿ‘
346ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...2Could be way betterAfter 1day of use I am writing this reviewBuil...
347ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...5Mind-blowing purchaseSimply good product..... โค
348ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...5Must buy!Its wonderful product in budget price..
349ACCFSKBJYWZKXGCPU&I Titanic Series - Low Price Bluetooth Neckb...1HorribleIn a month only one earpiece stopped working
\n", + "
" + ], + "text/plain": [ + " product_id product_title \\\n", + "340 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "341 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "342 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "343 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "344 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "345 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "346 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "347 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "348 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "349 ACCFSKBJYWZKXGCP U&I Titanic Series - Low Price Bluetooth Neckb... \n", + "\n", + " rating summary \\\n", + "340 5 Classy product \n", + "341 5 Perfect product! \n", + "342 4 Delightful \n", + "343 4 Very Good \n", + "344 4 Value-for-money \n", + "345 4 Very Good \n", + "346 2 Could be way better \n", + "347 5 Mind-blowing purchase \n", + "348 5 Must buy! \n", + "349 1 Horrible \n", + "\n", + " review \n", + "340 Nice Products \n", + "341 Best in this price Bass 4.5*Sound 4.5*Battery ... \n", + "342 Super product very nice \n", + "343 very nice \n", + "344 Quality is good as er price \n", + "345 Great product low price best quality ๐Ÿ‘ \n", + "346 After 1day of use I am writing this reviewBuil... \n", + "347 Simply good product..... โค \n", + "348 Its wonderful product in budget price.. \n", + "349 In a month only one earpiece stopped working " + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[~df[\"product_title\"].str.contains(\"BoAt\")].tail(10)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "df[df[\"product_title\"].str.contains(\"BoAt\")]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "# extract the first 10 tolkens from the product title\n", + "df[\"company\"] = df[\"product_title\"].apply(lambda x: x.split()[0])" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(450, 6)" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "company\n", + "BoAt 150\n", + "realme 150\n", + "OnePlus 100\n", + "U&I 50\n", + "Name: count, dtype: int64" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"company\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "there are total 4 headphone comapnies , we could even extract the product line from the title." + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "rating\n", + "5 298\n", + "4 95\n", + "1 29\n", + "3 26\n", + "2 2\n", + "Name: count, dtype: int64" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df[\"rating\"].value_counts()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Avg rating with respec to each company" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "company\n", + "BoAt 4.333333\n", + "OnePlus 4.470000\n", + "U&I 4.620000\n", + "realme 4.353333\n", + "Name: rating, dtype: float64" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.groupby(\"company\")[\"rating\"].mean()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> **let's use the pdt title and review fro the bot , cuz the model need to know which pdt the user is talking about and the context is derived from the review , we can also use pdt description if we have one but the main is to make purchase decision based on the cusotmer review rather than looking at the overall rating of the product**" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
product_titlereviewsummary
0BoAt Rockerz 235v2 with ASAP charging Version ...1-more flexible2-bass is very high3-sound clar...Terrific purchase
1BoAt Rockerz 235v2 with ASAP charging Version ...Super sound and good looking I like that prizeTerrific purchase
2BoAt Rockerz 235v2 with ASAP charging Version ...Very much satisfied with the device at this pr...Super!
3BoAt Rockerz 235v2 with ASAP charging Version ...Nice headphone, bass was very good and sound i...Super!
4BoAt Rockerz 235v2 with ASAP charging Version ...Sound quality super battery backup super quali...Terrific purchase
............
445BoAt BassHeads 100 Wired Headsetnice product.. color is exactly shown in the ...Wonderful
446BoAt BassHeads 100 Wired HeadsetAwesome Headset . I was searching for the same...Brilliant
447BoAt BassHeads 100 Wired HeadsetIt's a really perfect earphone. I love it . So...Fair
448BoAt BassHeads 100 Wired HeadsetGood earbuds at this price Range and Boat prov...Value-for-money
449BoAt BassHeads 100 Wired Headseta very good earphone in budget sound is awesom...Wonderful
\n", + "

450 rows ร— 3 columns

\n", + "
" + ], + "text/plain": [ + " product_title \\\n", + "0 BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "1 BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "2 BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "3 BoAt Rockerz 235v2 with ASAP charging Version ... \n", + "4 BoAt Rockerz 235v2 with ASAP charging Version ... \n", + ".. ... \n", + "445 BoAt BassHeads 100 Wired Headset \n", + "446 BoAt BassHeads 100 Wired Headset \n", + "447 BoAt BassHeads 100 Wired Headset \n", + "448 BoAt BassHeads 100 Wired Headset \n", + "449 BoAt BassHeads 100 Wired Headset \n", + "\n", + " review summary \n", + "0 1-more flexible2-bass is very high3-sound clar... Terrific purchase \n", + "1 Super sound and good looking I like that prize Terrific purchase \n", + "2 Very much satisfied with the device at this pr... Super! \n", + "3 Nice headphone, bass was very good and sound i... Super! \n", + "4 Sound quality super battery backup super quali... Terrific purchase \n", + ".. ... ... \n", + "445 nice product.. color is exactly shown in the ... Wonderful \n", + "446 Awesome Headset . I was searching for the same... Brilliant \n", + "447 It's a really perfect earphone. I love it . So... Fair \n", + "448 Good earbuds at this price Range and Boat prov... Value-for-money \n", + "449 a very good earphone in budget sound is awesom... Wonderful \n", + "\n", + "[450 rows x 3 columns]" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "f_df = df[[\"product_title\",\"review\",\"summary\"]]\n", + "f_df" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"1-more flexible2-bass is very high3-sound clarity is good 4-battery back up to 6 to 8 hour's 5-main thing is fastest charging system is available in that. Only 20 min charge and get long up to 4 hours back up 6-killing look awesome 7-for gaming that product does not support 100% if you want for gaming then I'll recommend you please don't buy but you want for only music then this product is very well for you.. 8-no more wireless headphones are comparing with that headphones at this pric...\",\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Super sound and good looking I like that prize',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Very much satisfied with the device at this price point being from an awesome brand. Design wise , I liked it more than rockerz 255 model.Bought the model blindly on its very first day with zero reviews and it was a wonderful choice I must say.Bluetooth 5.0 enables us to connect devices simultaneously. And vibration motor for calls , its too good.',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Nice headphone, bass was very good and sound is clear. I am purchase for calling purpose and best choice even riding on bike wear in one ear and opposite end voice was clear and no complaint for calling.. Battery backup 1 full day',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Sound quality super battery backup super quality super this price range super and this value for money',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"Wowwww it's amezing bluetooth nice look, nice price, nice battery back up, I love always flipkart product's and Flipkart replacement and refund policy, you can return or refund after received a demegzed product\",\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Awesome colour! Amazing experience .. but only the charging data cable is not of good quality and adjustable clip is not so tight.',\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"For the first time, I am posting a review, just because the product compelled me to do so. Icouldn't find a single aspect missed or mis-handled by Boat. Well this is called, quality engineering. Well, some people say Boat enhances bass and thus compensates with clarity, but I would give my neutral and true feedbackBass : 10/10Clarity : 9/10Comfort ease n looks : 15/10Features :10/10The best buy from flipkart yet..\",\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'First of all the Delivery boy is a good guy. Nice receive and responce. Product is super. Packing also good. I fell Red color is not sufficient for me. Otherwise totally awesome product. Delivery is too long. Iam taking one week after booking. Thankyou flipcart and boat 235v2 also.',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"This headphone is good but not that much as i expected*Pros- 1Good battery backup 2Good sound quality*Cons-1 There's a voice gap between video activity and voice. Voice comes after video activity not both comes together. It is ok when you watch movies and music but if you play pubg with it you will clearly feel the big gap it matters a lot for me. It is not working after 4 month very much disappointedOverall not goodDon't buy please\",\n", + " 'summary': 'Worthless'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"It's a very good product ... I'm so happy with this BCz its bass quality & sounds is too good & batry back up Also super\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Nice build quality.. bass is best it self.. vibrate at call is nice. .. nice support from flipkart and delivery partner',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"After using for about 8 days, right side of the earphone is not working properly and the volume on right side is very low. I didn't expect this.\",\n", + " 'summary': 'Terrible product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"Mic is not proper recipient persons can't hear proper sound ( every time for call I heard from front I can't hear you so I have to again talk to through Mobile phone no Option useless of wirless meaning) and sound quality is so loud. Like local headphones. not comfortable to wear for more than1 hrs of uses.tere is no meanings to get replaced again you get same product therefore this is wast of money.\",\n", + " 'summary': 'Useless product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Wow flip cart super fast service like express speed delivery I order 11 am delivery At 5pm I am very happy, boAt Bluetooth headset is very very excellent product fast charging super totally user friendly go for it',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Very great product at this price I will assure that this is a value for money product and the bass and sound quality was awesome the build quality was great ๐Ÿ‘Œ and this product has a mat finish which gives a class and flagship look this is the best and the fast charging technology was working very well and the ear are fixing suitable in our ear the music quality was great',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"It's very good and its bass is very high This bluetooth is very good best value or money but battery is too tiny.....Battery backup is not long time but it's realy fast charging support so little battery is comfortable with fast charging\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Good product. Never used bluetooth headset before. Now I am happy to see ease in my work. As I noticed boat marketing their products aggressively in market in recent days. About product it\\'s like awesome having better build quality, bass is good, battery backup is fine and vibration though it vibrates my neck when ever I gets call but still feature is must needed when u are driving. Wanted to give 5star but there is a sentence that \" Nothing is perfect in this imperfect world\" ๐Ÿ˜„๐Ÿ˜„๐Ÿ˜‰',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"This review is after 1 month of use .Pro:- 1.Battery backup is genuinely too good, runs almost 1.5 -2 days on a single charge.. and 8hrs on continuous playback.2. Charge very fast,,, 40% just in 15-20 minutes3. Sound is crisp,clear and decent, not too loud. 4. Build quality is awsome nd stylish as well.5.connectivity is super fast nd good with phones.6. Last but not the least,,, its really comfort able nd i didn't feel any discomfort or pain even after continous use of 5 hrs which i ...\",\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'I like It Boat HP Sound Quality is bestm best And Bass Quality is to good And New V2 product is to good & Fast charging is besttt to save charging timeing....',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Hi Seekers, I am writing this review after 2 weeks of daily use, lets start with pros and cons Pros-โœ“Sounds Quality is goodโœ“ Bass is good enoughโœ“ Look is okay as per this price range โœ“ All essential controls are providedโœ“ Backup is decentConsxx Bluetooth range is too short (even if you are walking by holding phone in your hand you will feel connection disturbances at all times)xx In case of battery get low it continuously gives you a voice signals in every 2 seconds I found its ver...',\n", + " 'summary': 'Does the job'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Great product.. I loved it.. As I was using level U.. This product is much more better than that.. Though battery life is just like 8hrs and bass like goosebumps... But when increased bass earplugs starts raddling.. Vibrate feature is awesome..',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Awesome product happy to have one.Good sound quality in medium volume, with equalizer app could complete the high bass sound. Battery last long 20 min of charge to enjoy whole day.Very light weight, Easy to carry,',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"It's a very good product... I'm so happy with this Bcz it's bass quality & sounds is too good & battery backup also superb\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Amazing product Sound quality was awesome, it has deep bass which I really wanted, I am really satisfied and battery backup was also nice and it also had fast charging facilities',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"I think it is the best product in this price segment I buy this product after seeing it's sell figure and my decision got right u must buy this product I love it's sound quality but the build quality must be improved and they must give charging adaptor out of the box\",\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Best product at this price loved it. Thank you flipkart for safe delivery ๐Ÿ’ฏ๐Ÿ˜ƒ',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Excellent voice clarity superb bass for music lovers. Overall a very good product.',\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'This earphone is just awsome yaar , everything is just so perfect yaar just go for it blindly ,i tell you u cant find a best product at this price its awsome๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'It is an amazing product.. For this price... Less weight.. Flexible.. Super sound... Extra feature is call vibration.. Nice one.. Try it..',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'The product was good enough.. Stylish blur color with well designed earphones.. Coming to the specifications sound and bass was superb... Value for money... Batery backup is also good around 6 hours life.... No lag in PUBG... Highly satisfied but have to wait and see how long it works like this',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Boat headset is very clear voice and bass is v good and plus point is fast charging 20 mint to 4 hrs batery backup... One of the best bluetooth headset....osmmm products',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"A fine product i would say , well crafted design and good build quality .. good fit and comfortable to wear ... enough bass to provide u good sound experience .. although not the most premium quality but still considering the price it's well ahead of it .. manages lows and highs well, sound mixing and good listening experience when it comes to music video and others ..the only CON i noticed was the microphone .. i think this device is not built for calling ... sometimes the voice is not eve...\",\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Good product very fast delivery (with in 36 hours only) superb color love it',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Boat rockerz 235 v2 is the budget blutooth hearphone. All are very good performance only sound quality is slightly poor.. vibration and battery backup is the best part in this product. Bass also very great .. just lysric clearing not proper',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'If you are a bass lover then blindly go for it . And I think 8 hours of backup is enough and 4 hours charge in 20 mins .what else we want . Superb',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"Review after about 2months of usage.Before starting let me be clear, THIS DEVICE IS NOT FOR SERIOUS MUSIC LOVERS/AUDIOPHILES.I'm not gonna repeat the same technical aspects of it, you already know what's inside it. So...Coming to the sound, if you just love some BASS and heavy sounds this earphone will become your best buddy in no time. The volume on this is insane. I only use it at 20-30% max. It's very loud. So no complaints there.If you've used some premium earphone from brands lik...\",\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Im a jbl user ..boat 235v2 battery is too good to stay 2 days..fast charging..bass is 5 of 5 but sound of vocal is 4 of 5.. mic is good ..although i bought this in 1299 ..in this range its good',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"The boat 235v2 is really good it's sounds very clear and also good bass. If you think buy a Bluetooth headset go for It. Just sounds and battery backup is awesome.\",\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"Above from my expectation, after reading the review i opted for not to purchase this product but guys you won't believe it really work, too good sound quality, superb bass overall it is lovelly one....will make ur day sweet.......bass lover will loved it.This boat 235v2 is better than boult pro bass product coz i ordered both the earphone jst as to compare the quality and boat rockerz is jst uncomaprable...perfect tune...superb acaustic....voice calling is far better that boult earphone........\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'I brought this product as I was looking for a sweat proof headset for my workouts. I got it for 899 and I have to say that am pretty satisfied with the features and the quality that the headset has to deliver. I would definitely recommend this product to my family and friends. Just go for it !!!',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"Ti's is my first Bluetooth headset it is wonderful and color is more attractive and the sound quality is good and it is good product and value of money is 5star and battery is good\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Very decent look product. Give superb bass. Mic quality is okok. Design and build is superb. In this price range it worth it.',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Good quality and good product you have to take you will enjoy ๐Ÿ‘๐Ÿ˜ I just love it ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ’ž',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Awsome Sound Quality 5 * !!Bass Is Awsome 5* !!Degin is Good 3* !!Battery backup much Good 4* !!',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'It so nice but nickband so tall but otherwise is best headphone call vibraion and fast charging nice product.....',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"It's a Awesome purchase. Value for money. I can't expect that type of sound and connectivity will get in this price range. Last time I bought Boult ear buds and refunded due to charging issue and connectivity issue. That sound was not as powerful as this Boat headphone provides. Really happy to advise all of you if are searching for Bluetooth headphones please go for it. You will get everything you are searching for. Thanks Flipcart. And request all of you please go for only Indian Products.\",\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'Very nice very satisfied and sound quality very good bass is excellent overall worth it',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': 'First of all it looks very perfect and is non fragile and awesome experience using this.....just fast delivery and well packed ....just perfect qs a product can be...and the best part is its mindblowing sound quality thunping my ears.....',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset',\n", + " 'review': \"I think for this price range, it's one of the best available in market. sound quality is good and loudness is nothing short of excellence. Bluetooth connectivity is too good. Satisfactory with looks and build quality, could have been better.\",\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"I will tell you some hidden features that you might have not heard and will summarize my review as follows first:๐Ÿ‘‰Sound quality is 4/5๐Ÿ‘‰Build and quality 5/5๐Ÿ‘‰Features 5/5๐Ÿ‘‰Looks 5/5๐Ÿ‘‰ Battery 6/5 yes its 6/5๐Ÿ‘Œ๐Ÿ‘‰Overall price to product 5/5๐Ÿ‘ˆ๐Ÿ‘ŒIf your Budget allows you can buy them they are really greatNOW SOME HIDDEN Features not actually hidden but yah that many you have not heardRead the full para for correct infoThe major con you hear is that it doesn't have โšกoff button โšกBut...\",\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"PROS: best in budget, with a good bass most loved thing is ๐Ÿ”‹ backup. 1hour charge gives minimum 10 โœŒ๏ธ๐ŸŽง enjoymentMagnetic attaching helps more to improve battery life more๐Ÿ˜CONS: (1)sec ..delay in sounds in pubg๐Ÿ˜‘ the only disappointment in these, I bought this for pubg streaming but they bit late in sounds I don't recommend these for pubg player and for gaming it's not worth writing this after 1week hope u find these a useful review ๐Ÿ˜˜\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'nice very beautiful Realme buds Very good soundbass quality very nice battery backup good',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'in love with thisthe auto turn off when magnet sticks is very handy and saves batteryaudio quality good...balances between the highs and the lows good mids alsoi have used skullcandy inkd as well as boat rockerz 225as a comparison, skullcandy handles every frequencies without any distortion, gives a great quality and feel to the audioboat adds bass to the normal audio which makes it distorted at large volumes and long usage timescoming to realme, it is far beyond boat in terms of audio...',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"Everything is Good Only Bass is Little bit Less as compare to Boat Rockerz 255But Except Bass Overall Is Awesome And the most amazing Function is Auto connect, when separate ear buds from each other it's connect automatically with previousaly connected device within 2-3 secon. Battery backup is also good as They commit. 10-12 Hr And. fast Charging. The most Attractive Design which looks Too good with premium Material and Comfortable Ear Buds. Go for it.\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'I am writing this review after using this product for 3 weeks and I am very happy with this product I am giving it five star ???? ? ? I must say it is a very nice product and you can buy this product blindfold it is a very great battery backup and the song quality is very very nice and it is light and easy to use',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"These earbuds are the best you could buy. good build quality, excellent sound and bass. Mic works excellent even while riding a bike. Audio is clear and the battery last long too. Idk exact hours.Realme, you've outdone it๐Ÿ˜\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'After using Portronics Harmonics 208 and many research I found a good wireless headset( Realme Buds ).One of my friends using boat225, all god but disappointed with voice clarity and built quality.RealmeProsMagnetic standby, awesome feature saves battery.Google assistant.Sound & Built quality is good.Soft buttons.Fits good and perfect in shape.Voice cancellation while speaking is excellent.Wire size is good not too long, not too short.ConsWhile not speaking other person can hea...',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'This is my genuine review after the use of 7 days ki The perfect wireless headphone in this range infact more than perfect .There are no cons in this earphoneSome highlighted pros due to which , daily & daily u will fall in love with it & always think urSELF Fortunate are:A+ battery lifeA+Sound qualityMagnetic function is super ๐Ÿ˜˜',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"I'm a music producer and I find this earphones good but it's not worth the price, you can choose one plus instead or infinity by jbl for crystal clear sound quality, real me buds is loud cause of the driver (11.2) but it's not clear and you'll get a head ache after using it for a while , they say it has good bass but it doesn't , if you want good bass and clear sound of each and every instrument, go for one plus, jbl , infinity, skull candy or sony. Don't but real me buds\",\n", + " 'summary': 'Did not meet expectations'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'very nice product and best sound quality very fast delivery because i ordered yesterday and delivery in next day afternoon nice design good bass quality nice packaging clear voice quality better than boat 255f rockers',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Realme Buds Bluetooth used details and ratingBattery : 14 hour Music Playing 5/5Key Controller : 4/5Design : flexible velvet type ,-- , ~~ () 5/5Colour : Green 5/5Charging time : 1h:20m full charge 4/5 Stand by : 7 day and 3hour music playing 5/5Music and Bass : good quality , Bass 4/5Compatible : Good , 4/5Bluetooth connection : โ—Pairing in 4 second,,, โ—paired device auto connect 2 second to 4 second . โ—My device 3 second auto connect . 5/5Bluetooth range : โ—Straight 75...',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"Got this free with Realme X2pro, but this product is good enough in its place.1. Sound quality is good2. The rubber material is so soft n comfortable to put it on.3. I love the feature in it, that you don't need to waste your time switching it On or Off. Just detach from magnetic bond and it will b switched On n put it back to magnetic bond n it will switched off.(the best feature I have ever got to use)The only problem is there is no cap at the charging point as it is open always. Weari...\",\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"I would like to thank Flipkart for delivered this product with in time ... It's really amazing .. nice battery backup and inbuilt quality... But you need to improve bass quality .. thankyou ..\",\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"amazingly superb... very good product and i strongly recommended to all who searching good Bluetooth headset with good sound quality and long lasting battery backup. i'm using it since 1 week and didn't charge it yet isn't it amazing.\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"Yo guys this product is much super than i have ever experienced and expectations .The bass is so good and the clarity is also is muchu better compared to boatz .if u checking this out to buy there vwill be no regret in buying this . so comfortable to carry and light weight. the magnetic this is so use full and it has a range of bluetooth of over 2 rooms . it's one hell of a product for this price range .. plz consider this if u are a budget .\",\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'No doubt.... This is an awesome product by REALME.. .. And I am very happy for this product. Later I bought MI Neckband and The sound quality is not good but not too bad.... I feel bored ....But REALME EAR BUDS IS TOO GOOD IN SOUND QUQLITY . PREMIUM QUALITY BASS....',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Pros-Very good battery backup(10hrs) Good sound(loud) Nice build quality Magnetic on off is superbCons- bass is not satisfying Not fits in ear(speaker drum is too big) charging point is opentips- use bass booster for great bass experience',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Built quality is very good. Sound is clear & crisp, you can hear without losing any beat. Vocals are also good. Bass is quite balanced.Great connectivity. Battery long almost 11 hoursI got it with my Realme X2 Pro. But even if I have to pay then worth the price. Thank you Realme for this awesome product.',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Awesome I think I have made a good choice especially as I travel to work so this will be my good partner..๐Ÿ˜‰',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'in love with realme products .. Good thank you flipkart &realme good experience with realme x2 pro with this headphone..',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Everything is just fine, but in sound, music and bass I would say that the boult probass curve band sounds much better crisp and clear that this. And the price for that is lower than this.',\n", + " 'summary': 'Fair'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"everyone is saying it has punchier bass, but after experiencing i don't feel it has punchier bass,bass is average.overall sound quality is average, vocals and treble are goodmagnetic on off function works great build quality is awesome\",\n", + " 'summary': 'Good'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"It's a very nice headset with great bass and treble delivery with a nice build quality and it's so light that one cannot feel it after putting around the neck. The connectivity is good enough but the range could be a little better and love those features offered in this price range and the sound quality is also great with crisp treble and semi high bass Some minor highlights to be noticed :1) Sound quality is great in this earphones but with different devices you need to configure the sound...\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"After using 15 says I'm writing a review done quality is awesome bass is is awesome design and build is awesome battery is great but not that much hope much you are thinking over value for money thanks Mr. madhav seth and realme\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Got today only, one day prior, very good Flipkart and ekart. I m movie n music lover, so i search and compair too many earphones nd now i chosen realmi buds About buds Design is very great.Sound quality is much good but i think wired ear phone much better experience from this. No such deep sound quality i get from this bud, but its decent. Bass quality depends on phones equaliser, i have my realmi 2 pro so that i can hear good bass quality from that.Fitting in my ear also comfortable.Co...',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Really appreciated this product from realme ..... Satisfied fully ...... If u like deep base , high battery backup n light weight Bluetooth headset , thn i suggest u to take this ..... Its main feature is battery backup ... Its almost 12hrs i am playing continuous music in these n charge is nt down ๐Ÿ˜',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"I am very happy with this product. its just wow! i loved it.Only one thing i didn't like is led bulb is not turn red into green or other color . when its full charge it always red .so you have to check after some time.Whether full charge or not.\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Sound quality awesomeCall quality ok Bluetooth range unpredictable at this price point superb connection.Design just wow and classy not too long not too short.Battery backup amazing Just one con which is sound delay in pubg Not recommended for pro pubg players they should use wired one.If u liked the review pls give a live',\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'I am giving this review after 14 days of rigorous use.Sound quality 10/10 (better than one plus z)Build quality. 9/10. (slightly lower than one+ z)Bass. 10/ 10 ( better than one+ z)Battery 7/10. (One+ z is far ahead)All these rating are based on all earphones below 2000( wireless). If u r a corporate person and had to attend a large no. Of calls go for one plus z If u r sound lover person realms buds are a leap aheadPros- real me are great in its own wa...',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'nice product.. good bass.. great design.. superb battery back up',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Best bluetooth headset so far. I have used JBL, Boat, Portronics. This one is lightweight, sounds perfect and the charge lasts for days. The best part is that it has an amazing mic, unlike any other BT headset I used in past.',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"hi all... I waited so long to purchase a nice Bluetooth earphones.. and searched a lot by considering lot of products with different technical specifications.. a last I found one... it's called realme Bluetooth headset. believe me bass is really nice... not just nice.. it's astonishing. Positive aspects are :- sound quality, battery life-10 hours u can expect, build in quality, it's design is smooth and you can feel the price, metal filters inside buds as shown in picture, smoot...\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"awesome...it's just awesome...the sound the battery life and the looks ...it's Superb and auto connect and disconnect feature is super fast and gives you a very long battery life ....\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Super bass, easy to pair, crystal clear sound, excellent product in this price range.',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'NICE WONDERFUL & JUST AMAZING AND AWESOME...BATTERY BACKUP I JUST APPRECIATE THIS ....',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'I m writing this review after 2days of extensive use of this product. I find a lot of good things like its design and build quality believe me it is in this segment like its flexibility and black yellow combination matches your outfits. Coming to its sound quality it is smooth for all kind of musics but a little bit higher bass makes odd sometimes i think this is negligible. And last its battery back up after receiving this product i first go for charging and make it full of charge and coming...',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"Nice earphones but have a small issue with button can't press perfectly as it is close to each other have a good battery backup and connection.As for the comfort basis its ok Rubber band is sterdy at neck wire is a bit graded so good quality but could be more better....\",\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'After using 1 month. ๐Ÿ‘‡๐Ÿ‘‡Sound:- not so clear but not bad also, it is pretty good.Base:- so satisfied need little bit of improvement.Battery:- good๐ŸŒนOver all good product in this range๐Ÿ‘‰PLUS POINT:- HEIGHTS BASS IN THIS PRICE RANGEMUST BUY',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"After using a month, reviewing The best wireless earbuds within this price guys1. Best at bass2. Very nice quality of sound3. I use it for 5-7 hours a day and one charge goes upto 7 days for sure4. Used it in gym as well - no tension about sweat as it's waterproof5. Apart from the black one, other colours could have been better6. Coz of being the best this has got highest rating on 5 start\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Nice product smooth and slim .. quality is best like it',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"The product is amazing. The sound quality is great, it is so light you won't even feel it's there, battery backup is huge. Lasts for 2 days easily. If less use than maybe a week. Easy to clean. They give extra earbuds. Bluetooth range is great. Sound clarity is great. Everything is great.\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Design was good 5/5Bass also good 5/5Sound good 4.5/5Light weight,I think battery was also good',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'PROS:Super awsome bulid quality. Material of neckband, wire, switches & earbuds feels really premium, comfy n top notch.The design too is ergonomic and sits perfectly in ears.Main highlight is the magnetic bluetooth on/off which is super fast and smooth. It gets connected by the time you plug in the ear piece.An led light is there for battery n charging indication The black and yellow combination looks damn cool and is great attention seeking.Ear supports are removable and does their j...',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': \"Don't hesitate to buy that green color buds! Its fabulous.... believe meUsing it for 1 week and yes satisfied enough.... LED notification is there and the led is ๐Ÿ˜\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'It was a very good product and I like it . It is a very good choice for this price.',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Lovely colour and premium looking and connectivity is awesome and impressive better than 3k-4k rs headphones Trust without and double thought go for it',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'reviewing after using for one week. - great battery back-up charged it only 2 times on whole day usage- nice built and best part is it automatically starts when u insert your headphone in ur ears.,- nice bass',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'It is too good it has good battery backup and quality is mind blowing and sounds too good and is the worth product....',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds Wireless Bluetooth Headset',\n", + " 'review': 'Writing it after 27 days of usage. Its design really stands out, be it the metal body or unique colour combination. Built seems solid. Battery life is decent, around 12 hrs on vol around 40%. Charges from 0 to full within 2-2.5 hrs. Auto shut off feature is very useful,(auto resume after they are turned on would have been great). Fits well into the ears. Sounds quality is quite interesting, initially I was a bit disappointed as I usually use Sony MDR-XB450(they sound phenomenal) but comparing...',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'first of all with mi 18 watt charger,it got full charged in 20mins.that was amazing and 16-18hrs playtime is best at this price range.I searched for a wireless earphone and bought many but finally settled with this.sound quality is good but build quality is premium.overall i would say it is the best earphone to go with and I guarantee you will not regret.drop like if you find it useful.',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'I am using this product from 2 daysLet me share with you my experienceThis is my genuine and humble review 1st the delivery of flipkart is too good and then awesome packingThen comming to productThe experience of sound is really great we catch every instrumental sounds clearly and be joyful while listening and my rating is 4/5And then about bass, actually I expected too about bass boost but it not reached then that just good actually but I satisfied with that and my rating is 3/5Then ...',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"LONG BUT WORTH READING.Honest review after one week. Just go for it. Dont get affected by negative reviews. Totally worth every penny and far ahead of its competition. The battery backup is splendid. Sound quality is very good nothing to complain here. Comfortable in the ears. Connectivity perfect. I haven't experienced any lag with normal media usage. I am a student and watch video lectures at sometimes 2x speed and never once I faced voice lag while changing video speed. Just go for it. Ju...\",\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'writing review after using it for two days ..first of all its having best battery backup among other wireless headphones.only drained 20% battery aftr usage of some 8hrs.. build quality is above the mark.. bass wise its lil low.. bt its ok .. go for it .. it wont disappoint you .. a great thumbs-up for flipkart delivery teams๐Ÿ‘๐Ÿป๐Ÿ‘๐Ÿป',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'The bass provided is a decent one and the sound clarity is pretty good.And all the other features are exceptional.U can surely go for this one for the price range..will not regeret.',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'ONEPLUS THE BEST ๐ŸŒŸCrystal clear sound .Treble & Bass are well balanced.Bass is developed compared to OP Bullets 2 .Massive Battery Backup within 10-15minutes of charging.Built Quality is too good which gives premium feel .Magnetic On/Off will be very much useful .Finally , OnePlus gave us the best affordable wireless earphones ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Thanks to flipkart fot super fast delivery in our rural area.Got it within 3 days.Super earphones using it for online pg classes,comes with handy backup hrs.5/5 for sound quality4/5 for bass(not as high,for competitor like sony310,or realme wireless)5/5 for build qualityWill rewrite a review after a month use',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"๐Ÿ˜‡No more tangles n dangling!! Loved it! Sweetest thing about this is, we can do our works FREELY or even go washroom with music on us..๐Ÿคฃ I would say, Go for it๐Ÿ‘‰ feel that energy!Well packed, class look And of course, the sound quality is GreAttt!!๐Ÿคฉ (I admit I'm a bit excited)And thanks to Flipkart for a quick n safe delivery ๐Ÿค—\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Looking nice product...I got just 1day delivery..11th I ordered...12th I received...in this price range this product is no1..I got blue...i gift to dear one.. must buy.. don't go other products on this price range is this best....next level headset...no other gives this much battery life 20hrs...mind blowing OnePlus bullet z.. presently I'm using realme wireless buds, both are best in this segment but OnePlus is more battery life n extra multiple device connectivity button n latest design...\",\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'THIS ONE IS OUTSTANDING...few months before if some one ask me WITCH IS THE BEST VALUE FORE MONY WIRELESS EARPHON in the market I will definitely go for the SONY....JBL...or.....REALME But now it the oneplus BULLET WIRELESS Z I will give you my thoughts and features of this earphon from my 3 days of usage BUILD QUALITY : the build quality of this earphon was good..combination of good plastic materials and some fiber......if you enjoy music or whatever no problems that it w...',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"By now u have seen 100's of review by now ... Everything u have read is true ... 5/5 in all but not in bass... If u havnt brought and u r a base head pls look for different headset but like me if u r stuck with this there is A FIX TO BASS.... SIMPLY CHANGE THE EAR TIP TO LARGER SIZE ... It improves the bass significantly at the cost of slight discomfort .... It works .. trust me Pls upvote this comment , So more people can improve the bass\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Product is superbbb... Really frds... Gaming sounds is also good .. pubg games sounds is clear... Compare two to another product .. it is really awesome. I really love it is a genuine review . I hope you are also like this product who is waiting for the games music ,video , call, it is the very very very good and also the billied quality is very good and also the battery charging is very good is take 10 minutes time but he charges in 10 minutes time and also the product will be used for 10...',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Best budget Bluetooth earphones by one plus ....sound quality superb.....bass also good .... vry good built quality ....fix 15 hours play back ....very fast order delivery by flipkart ....over all good',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"I have used this with a non OnePlus device so take that into consideration when reading this. Just want to mention that if you are not an audiophile you will never notice the difference between AAC and aptx. These earphones only support AAC and SBC.Cons:The bass is very much lacking. The treble at higher volumes sometimes (although rarely) starts tearing up. If you are interested in movies with a lot of explosions and bullets flying around it won't be a very immersive experience. Pros:S...\",\n", + " 'summary': 'Decent product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"I'm fan for Oneplus since their first product. I have bought the series of products along their launch. Very first product from oneplus which did not meet my expectations is 'oneplus bullets wireless-z bluetooth headset'. It has no BASS effect at all!!! if you are buying for listening music and music lover, better to avoid. However, call quality, voice clarity and battery backup are at its best. One of the best headset to consider for day to day usage.\",\n", + " 'summary': 'No BASS at all!! Not for music'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"It's definitely worth. But it's not a basshead earphones, I've seen some reviews saying it's got such an amount of base but in reality it's a balanced headphones adequate amount of bass nothing much more.This one plus sounds good when it comes to overall sound quality, it's all balanced Product quality is superb at this price range you can't complainMagnetic on/off is very helpful in saving battery life and convenient too, you don't have to switch it off and on, just detach it and it in...\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Those who are looking for good voice quality in this price range , these OnePlus Bullets are the best you can find.โ€ข doesn't miss any single beat even at the lowest volume levels.โ€ขfast charging - 50% in 10 minutes & 100% within 25 minutes.โ€ขdeffinately has a long run time and yes you do get upto 20hours of play time for a full charge (depending on the volume level you choose to play)โ€ข very user friendly. one can listen for long time without any issue, for it u'll have to try the different...\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'I have been using this product from couple months. This headset will absolutely not work for calls. The reason is, the build of Wireless Z will not get mic near our mouth. However, it works if you have absolute patience to hold the mic in front of your mouth for hours you talk or be in meetings. This headset is only nice for listening songs compromising on Bass ! Only good thing I found is battery backup... You keep charge, go drink tea and come back. It will do for the whole day. ...',\n", + " 'summary': 'Hated it!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"I love the build quality.... Love the battery life... Low latency mode is also working perfectly while playing PUBG ... Accessories are pretty good....But if I'm talking about the bass... Bass is not as good as compare to the realme buds wireless... Realme buds have powerful and heavy bass compare to this...Except this, everything is perfect...If you're ok with medium bass then you should go for it... you'll not regret for that...Also call quality is crystal clear... So don't think so muc...\",\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"This works great with OnePlus 6 where you have audio tune option , there you can customise to the appropriate bass,Out of the box it has medium bass but when you turn on AAC and audio tune it to your requirements it's sounds great and highly recommended of your phone has audio tune option you won't regret it. All those unboxing videos on the internet are all false it has sexy bass.\",\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Best in class !! I am using this with my iphone 7 (no connectivity issues)Sound quality is good with balanced bass n treble(Soft Bass) Overall A very good product in this price range!',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Everything think is good but bass is low But after updating my OnePlus device The wireless z earphone sounds better than priviousBecause it's got support Of Dolby Atmos soundsOver all best for OnePlus device s\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Best in this price range..( used others from sony,jbl,noise)Saw youtubers saying this has low bass...No.not at all..Sounds incredible on my asus 6z.little tuning in the audiowizard and these sound like expensive studio quality headphones.Pros:Great sound qualityTop notch build qualityThumping bass..low frequency bass response is goodGood battery backup with quick chargeCons:Low Latency mode only works with one plus phones Thanq #ONE PLUS for this fantastic product.',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'When I am starting for use..I am facing much more problems,,1 , on, off issue... not connect fast sometime sensor not working properly,,.. sound quality good but not excellent, .. And battery capacity is max 8 hour ..๐Ÿ™๐Ÿ™๐Ÿ™ i am not happy with us...',\n", + " 'summary': \"Don't waste your money\"},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Pros:1. Magnetic switch is fabulous. Switch over time is three seconds actually.. fantastic.2. Battery is unmatchable. 20, hours literally.. far ahead than its competitors.3. Neckband automatically switches off when not in use.. 4 Build quality is good with an attractive OnePlus engraving.5. Calling quality is excellent. No disturbance on the other side of call. 6. Good bluetooth range.Cons1. Should have provided with a case.2. To compete with Sony WI series, vibration was needed....',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Writing review after 3 days usage.... battery backup is really nice......am using redmi fast charger it's fully charged within 10min..... sound quality is really awesome..... decent bass....if you need heavy bass it's not your option....I really like this....\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Really great earphones.. very comfortable and very easy to use. If u love high bass then this are not for u other then that this are pretty good if u wanna buy them just do it. I totally recommend this',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Excellent sound and great battery backup ๐Ÿ’“ awesome design...I am happy with ONE PLUS ๐Ÿ‘๐Ÿ‘๐Ÿ‘',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Best wireless earphones at 2k price range! Hands down, the best call quality, build quality (so light that you won't even realise it is there), great warranty, wonderful features and God, that battery and charging is magic. Also, the music experience is pretty good, yes, the base could be better, but nothing at all that you can notice. Don't think for a second, I did a lot of research before buying and it is worth it!\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"I use it last 10 days & everyday use 7_8h ๐Ÿ˜‚๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡According to price...i give 10/10Every beat is clear, if you music lover, you feel it. 10/10Base 10/10Deep bass 10/9 (if you true bass lover otherwise it's very good for long time use in a day)Lyrics are very clear Battery 10/10 ( 18_19 battery)Design & build 10/10 comfortable, no pain if you use long timeGood for bike riding.Mic very Powerful it's catches whole sounds near u.\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"1.Build quality could have been a bit better..2.Bass is gud though i don't know why people are complaining..3.Battery is life is phenomenal you will get tired of listening..3.Mic quality is great..4.Magnetic connection is strong compared to realme buds..5.looks are great and flexibility is there for protecting it from accidental stretches.6.moreover its splash resistant.7.I have been using realme buds since it's launch, Compared to realme buds bass is just 1 or 1.5 points low out of 5....\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Excellent product by one plus .....and best earphone from all brands in this range .......sound quality is awesome.... ...bass is good .....not average......best things this earphone is battery backup .....I get 2 day batter.....approx 19 hour backup ......',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"PROS : 1. Long lasting battery life (About 18 hours) 2. Full charge in 30 minutes. 3. Excellent balanced sound. 4. Quick Switching between my phone and laptop CONS : 1. Bass is moderate. 2. Magnetic control only pause the audio, but can't play while separating the buds in my Redmi NOTE 7 Pro.\",\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'The bass is decent one audio clarity is just asowem .Im using this while running and i will suggest that to use right ear tips for perfect fitting .Battery is outstanding ๐Ÿ˜',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'I heared in you tube review that bass is low.But trust me amazing bass amazing sound.The call quality is astoundingly great.',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Osm blutooth earphone by one plus ultra low latency mode works on my redmi k20pro it's good option for pubg lover and base is not so good but definitely base is present in these earphone according to price its good\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Great product Very much useful for us. It has all the best... Like sound quality, battery back up, buid quality, fitting in the ๐Ÿ‘‚.. I recommend it for buy everyperson who's like wireless headphones...\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'I sanitize this oneplus bullets wireless fully satisfied for this product very nice build quality and sound quality very very good battery backup at this price. I have using this headphone for my oneplus 7 Pro device its perfect pair lots of love for oneplus .. thanks Flipkart for delivery on this critical condition all over world',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Great product for the price compared to the other available in the market.Sound quality is good not great.The ear plugs magnets could have been more powerful.There should have been a flap sealing lid on the charging port.Fully satisfied with the battery backup.Go for it๐Ÿ‘',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'The BEST under 2k. The magnetic control is awesome. Neck band is really comfortable. The bass is not that good. But the overall sound is very very balanced and enriched. I had an awesome experience with it. The battery life is great. Easily gave me 20 hours of backup. This is an overall value for money product. Go for it.',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Every thing is great but battery backup is super great i liked it',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Sound clarity is perfect,design built quality also good,most important thing is battery backup it superbb๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ”ฅ๐Ÿ”ฅbut bass is not that much good overall product is awesome ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ˜๐Ÿ˜',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Superb quality ๐Ÿ‘Œ bass abd sound quality are also very fine... From my personal review, I like it low latency. Best for pubg and other games.',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"I dont know why some people are complaining about low bass , on the contrary they have quite adequate bass and when you pair them with devices having dolby audio , it just works like a charm.-Best build quality-Battery backup is one of the best in its segments -Sound quality is actually more than awesomeAnd its more than just value for money , in 2k their's no other good alternative .Got them at only at 1850 /-\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'Z is not for bassheads but for those who want crystal clear sound and no muddiness at all.Mid-tones: 10/10High-tones: 10/10Bass: 7/10 Perfect switching between devices and 20 hours battery backup.And breakneck fast charging Speed Bass is there but not thumpy bass so songs like BELIEVER may not sound good.But watching movies and stuff on this one is so terrific and enjoyable so 10/10 for that.For bass lovers oppo enco m31 would be a better choice cause it has 2 modes balanced mode and...',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'One of the finest headset in this prize range .And battery life is one of the greatest thing makes this product worty to buy .and talking about sound quality So one plus the name is enough ๐Ÿ‘',\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': 'This is a wonderful product Unless you have received a faulty unit. Let me help you here Pros -Best in class buildBest in class features (quick pairing and switching, super quick charge)Best in class battery lifeMost comfortable earphone (i have tried nearly all good earphones under 3000 both wired and wireless. Comfort of these are superb)Cons -Sound is like a typical 1000rs earphone.Bass is there but not that much.But still i am rating it 5* why because my friend No OTHER wirele...',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"This product is fabulous in this price range ..... In 2k I have 18hours playback. Earlier I thought that this product should give atleast 12 hours backup, but on other hand terrific battery life. If you are searching for wireless earphone then go for it. Just not because I'm saying, it just worth it.\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': '1)Sound Quality Is Best.2)Bass superb but less than OnePlus bullet 2.3) Design and Build quality is best.4) Battery Back-up is very very Awesome. Standby time is 8-9 hour in 10 min charging..5) Full charge backup 19-20 hours really good and Best..6) Latency is Awesome i am tested this in Call of Duty..7) Noise cancellation is in Average mode ..8) Full charge in 25-30 min..In 10 min 50-60 % charge.9) connectivity is Awesome working in OnePlus...Other devices take time 5-10 se...',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bluetooth Headset',\n", + " 'review': \"Really good wireless headset. I came across a lot of reviews saying the bass is not so good. But I didn't feel so . It's really good.The sound quality is so balanced and it's perfect for movies , music and calls.\",\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Nice head set good fit nice quality good to handily poli aytem anu magnet pora kolllam migacha aytem',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'The build quality is really good and the design also looks great. The magnets of earbuds are also really useful. The best part is the cable organizer which is really useful. The bass is good and the sound quality is also good you will not be disappointed buying this product at this price. The call quality is also good and the placement of buttons is very functional and useful. Buy without any doubt.',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'outstanding product best sound, good Bass, clear sound\" good job \"REALME ...๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'woww fantastic experience ๐Ÿ˜ ๐Ÿ‘ and mainly discuss about this earphones is built quality is awesome ๐Ÿ‘Œ๐Ÿ‘im fully satisfied with this earphones ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘ prons 1. built quality is awesome2. sound quality is just super 3. bass , treble,mid ranges are just good4. long and comfortable cable cons 1. missed L shape jackfinally my overall rating is 9.6 /10',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Unbelievable bass And very clear audio ear protection very strong I really prefer to purchase this fantastic realme buds thank you very much realme',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'nice earphones with smooth sound. even the build quality is best . this earphone is better for bass lover . and also for smooth playback',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"What a immersive experience on the headphones...when i listen music on them it feels like i'm sitting in any live show... best sound quality i've ever experienced on this price range. superb realme it wroth the price.. Its looks are also cool to see with yellow lines. The button of the remote are tactile and easy to use and differentiate. The sound goes to extreme volume no trouble after long hours of use.\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"It's a interesting product so I'm writing this after 24 hours of burn out.. so stay tuned to know the full story.. eartips are silicone tips very comfortable but doesn't stay in my ear much well, but your mileage may vary.. build is great but after receiving my item I noticed scuffs and nylons coming off a little from the part near 3.5 mm port.. otherwise it's built really well.. speakers for calls is tremendous easily putting mi basics to shame.. it's great for people like me who talks a lot...\",\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Best in the market ๐Ÿ˜๐Ÿ˜๐Ÿ˜. Enjoying its feel the real bass ๐Ÿ˜Œ๐Ÿ˜Œ. Good qualities of wire, comfortable to wear, and great sound quality ๐Ÿฅฐ๐Ÿฅฐ . Value for money ๐Ÿค‘๐Ÿค‘.',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Nice product , nice quality , great buss, I love it',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'seriously abnormal bass guys...which is a big. negative about this earpiece ... ..i dont know why nobody paid attention to this bass boost feature , which is annoying. ...you will never be able to listen to the originally recorded song ....but will hear abnormal extreme bass in every song you play ..which may not be pleasing ....and you want to turn off the feature ...but you can not coz it is a default feature in this earpiece...sound clarity is good ..build also good .......but i wil...',\n", + " 'summary': 'Bad quality'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"Bass is awesome, a little extra, so people who like bass will love this, I personally like a balanced sound signature, so bass can be turned down just a notch, but treble is waaaayyy too high. It really ruins the experience, it hurts my ears. Mids are pretty good. Build quality is decent. Too much treble ruins the sound quality, that's why 3 stars. If treble was balanced then would have given it 4 or even 5 maybe.\",\n", + " 'summary': 'Fair'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"Realme rma155 vs boat 225 vs senhieser 180I have used all of them for 2 year boat , 6month senhiser , currently using realme since 2 week.Sound qualityRealme 9/10Boat 8/10Senhieser 10/10Volume Realme 10/10(11.2 mm drivers)BOat 9/10Senhieser 7/10BassRealme 9/10BoAt 10/10Senhiser 7/10Build quality Realme 9/10Boat 10/10Senhieser 5/10If you are only bass lover and don't care about lyrics then go for boat If you are only true music lover each and every notes matters for y...\",\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Sound quality is really good... Better than boat bass 200,225.. i have used many earphones like JBL , Skullcandy,boat,bout,leaf,bose,sony etc.. but i fell this is also good as leaf bolt ... I love it๐Ÿ˜..',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'sound is good i mean it have very loud sound. but speaking about bass im not too happy with it because bass is soo powerful but not soo clear as jbl have',\n", + " 'summary': 'Unsatisfactory'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"It's a allrounder. I used this for playing pubg , footsteps is clearly audible, music is awesome . I suggest you to purchase this earphone if your budget is under 600. I am happy with the product.\",\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"Using since May 6th. And it is exceptional. Especially for pubg it's wonderful you can hear the footsteps form where they are coming. There were no problem listing music for long hours. Active noise cancellation is superb you did not hear anything around you when you plug and play. I previously used Mi basic after 1 year one side went not working. This one has better bass and sound clarity than Mi basic headset. Go for it guys\",\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'sound quality+bass is quiet good , tangled free , and the design is great too , i give it a full 5 starsโ˜…โ˜…โ˜…โ˜…โ˜…',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"It's a great product according to the price and its sound quality and bass is perfect.Realme Buds 2 really its a great headphone.In this price range best headphone ever.โค๏ธ\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"After using 3 months, having mike issues. When you are playing songs it's good but when you are on call it's not a worthy enough\",\n", + " 'summary': 'Worthless'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"The Real Buds 2 (Feel The Real Bass)Design & Fit 5 - โญโญโญโญโญSound Clarity & Bass 5 - โญโญโญ โญโญValue For Money 5 - โญโญโญโญโญI Am Using For My OnePlus 6T ,I Got Best Budget Earphone From Realme ๐Ÿ™๐Ÿ™& Thanks To Flipkart Team For Within 2day FastDelivery ...Just Add To Cart & Buy This , Don't Wait.........\",\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Sound very good Punchy bassClear soundBut look is not so good especially in green color itโ€™s looks so simple I mean quality Overall great purchase',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'absolutely great product sound quality bass is great I did not expect that ,built quality is also great go & purchase guys but some cons are also there connector is not L shape treble will be improved in next version over all osm product bass lovers go for this earphones',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Best product to buy ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸIt is good in realme Narzo 10A good base and high quality worth in price ๐Ÿฅฐ๐Ÿฅฐ',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'every thing is great in this earphone just lacks clarity a bit and i guess its because of bass. cable: braidedlooks cool with black yellow combinationi like the magnetic earbuds',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Comparison Between Boat 225 , Realme Buds 2, Sennheiser CX 180Bass:-#1 Realme Buds 2 (Excellent Extra Bass)#2 Boat 225 ( It has also a good extra bass but not good as Realme Buds 2)#3 Sennheiser CX 180( it has no extra bass but the bass is just perfect when it required u feels a great bass)Build:-#1 Boat 225 ( boat is clearly winner on its build quality it feels more premiums than other two with its metal build and tangle free wire)#2 Realme Buds 2 ( It has also have a great build...',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Writing review after 6 months of daily use..Personally i use earphones on daily basis. When i upgraded to these earphones, their design and build quality impressed me. In the first month it became too wet due to rain but still these works the same way as they were on first day.Good product.',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"The best value for money product and also the build quality is good and lite wait and I also like that yellow strip it's very useful\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"I don't know much about the technicality of the earphones but the sound output from these earphones is pretty good for its price , sound coming from them is crystal clear ,these are undoubtedly the best earphones in this price range.\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"bass Is awesome And Clarity Is also Descent Bulit Quality Is really good Very Durable Cable Quality really Liked The Products Let's See How Long does It Last for?\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'I literally love this product this sound quality is good i use more earphones like boat ,jbl,ubon etc but this earbuds are best I literally love this mic quality for recording.',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Real me Buds 2 is awesome product, Great sound quality but bass is not up-to the mark. Awesome build quality. Value for money ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Pros: 1.Sound is crisp and Clear 2.Bass is Awsome 3.Design and build quality excellent4.Cable organizer is usefull to carry pick up your earphone safetly5.Call quality is clearly delivered to whos speak with uscons:1. its a straight cable not triangle2.Not Gold plated 3.5mm Jack',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Ordered 2 for my sis and my self. Good built quality. Bass Triple are well balanced. Producing wow sound effects with Power amp music player app. Comfortable fit. thanks for extra ear bud. Well and premium packing. On time delivery. Another gadget in my laptop.',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'I am happy good quality product. Nice bass and sound clarity',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Realme Buds2 is really gud product with comfort and quality. Satisfied with it. But only issue is small ear plugs are only one pair available in the box which are perfect fit in the ear where extra other plugs are big and not useful.',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"It is the best in ear earphone in its price.nice built and noise isolation is good. You can feel every beats of bass.HD crystal clear sound. But the voice clarity could had been improved with the dual drivers. But still the best earphone in this budget. The build quality is also good and it doesn't feel cheap budget earphone.One more thing.... The cable organizer helps a lot while keeping the earphone safe and organized while travelling and keeping in jeans pocket.Hope realme buds 3 will co...\",\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Boat basshead 220 have better bass than buds2. But vocal of buds2 is better than boat 220... It produces very clear sound ๐Ÿ”Š loved ๐Ÿ˜ by music lover... Must buy but warranty must 1 year ๐Ÿ˜”',\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"I bought its because of their build quality, the sound quality is moderate. But they produce too much bass and lite and comfortable as you wear nothing. They are lite and well fitted in my ears with default buds.To conclude this might be the best pair of earphones you can get under Rs. 600. If your priorities are that the wire lasts long as it's don't get twitch easily. Don't think too much, just buy it. You will not regret it.v.\",\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Sound quality is amazing and build quantity is also amazing my brother is also using this ear buds 1 for long time and its performance is still very good so I also ordered ear buds 2 and both are amazing and working up to expectations.',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'The Sound quality is superb and the base quality is also good ..The point thing which I liked in this earphone is that its durability ..the wire quality is good ..before I was using the sennheiser cx275 ..the wire got cut from middle ..I am happy with this earphones.',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'NICE PRODUCT... WORTH BUYING.....!!!!Its a Signature sound by Realme India..I love the sound... Best in Segment.@REALME INDIA.',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"First of the design is so nice, the texture of the colour is amazing.. Now came to sound quality..I didn't expect it will be this good!! The bass is perfect for ears .. I really feel enjoyed whenever i listen any songs through this headset.. really satisfied for this product... recommend everyone to buy it and enjoy..Thank you.\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"I am using this headphones from last 6 month , sound quality superb , bass is less in comparison of my brother's boat basshead 225 , but bass is good , built quality very good , magnit is a pros , valuable price , wire quality osm , and this is one of the best headphones that I uses . 2nd is boat 225 โ˜บ๏ธโ˜บ๏ธ must buy\",\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Good bass over all nice i get Rs599 MRP price is 699 if you are getting under 500 then best',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"This is the best for daily use. It feels like nothing when in the ear and it's easy to keep organised, thanks to the magnets and organizer. It also has two extra buds one small and large which you can use according to your preference. It also has a tangle free wire. And Flipkart packing and delivery is always the best. No doubt about that.\",\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"Sound quality is acceptable with price range.bass quality is super . Design and build quality is good but personally i Don't like tha wair .all thing is good is this price segment but i have some issue with this mic and the bottoms .\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'The sound and bass are really good. Bass is really powerful. After 2 weeks of use the pin end is somewhat broken from the inside. Seems wont last for more than 1-2 months at most. But all the other parts looks better built. I have very rough use and i keep my headset in a pouch. Not worth 600, flipkart smartbuy headphones are better but not much rich in sound like this one.',\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': 'Best earphone under this price range i have bought sony buds which was available Rs100 more than this price but its sound was low in compare to realme buds2 best earphone under this price range with boosted bass bass is best',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'realme Buds 2 Wired Headset',\n", + " 'review': \"It's sound is osum and bass too , earphone material also very good and trust me guys I am writing this review after 7 month and it is perfect for you so buy this earphone\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good battery ๐Ÿ”‹ ๐Ÿ‘Œ Sound awesome ๐Ÿ‘Œ Bass ๐Ÿ”Š super Overall good ๐Ÿ‘ product in one plus',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Very nice product with amazing battery back up and deep bass.. Awsome sound clarity.it is very flexible Length of wire is little low.',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"This review i was posted after 1 week using this 1+ bass editions neckband. It's sound quality is awesome bass effect also awesom then call audio quality also super when i receive this project it was 100% changed i was used more then 4 days in this neckband using audio and video player per day i am used 3 hrs approximately after 4 days i god 40% of remaining charger. i changed this neckband with in 10 minutes its fully charged. its worth for money.\",\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'I\\'ve been using this product for the last 3 days. This might be too early to write an elaborate review but I\\'ve known enough about this neckband to be \"eligible\".1. Sound Quality: The drivers definitely produce a very balanced sound that is surely going to satisfy most of the people including me. Whether it\\'s about mid frequencies, vocals or the high frequency trebles, or even the lower frequencies, this neckband deals all of those with superior performance. Undoubtedly.2. Bass: Bass is...',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Excellent quality.. Packing is awesome.. Neckband quality is impressive its very Soft rubber, light weight.. Sound quality is very nice.. And bass is impressive.. Backup is approx 14 to 15 hours easily in medium volume.. Very fast Bluetooth connectivity and switching.. Type c charging cable.. I think it is best in this Price range.',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"This review i was posted after 1 week using this 1+ bass editions neckband. It's sound quality is awesome bass effect also awesome then call audio quality also super when i receive this project it was 100% changed i was used more then 4 days in this neckband using audio and video player per day i am used 3 hrs approximately after 4 days i got 40% of remaining charger. i changed this neckband with in 10 minutes its fully charged. its worth for money.\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Quality is very goodAndSound and bass is also very good But battery is not good Battery backup is not 17hours Battery backup only 10 hours on full volumeAnd this earphone is very good on all condition But battery is not on markAnd 10 to 12 it charge 70 to 80 and playback time upto 8 hoursAnd it completely charge in 20 to 30 minutes But no warning for low batteryI check two time i can not seen low battery warningOverall great product in this price',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"1. Call quality is Good. I have tested the call infront of high volume TV. The call was pretty good and didn't hear much noise if TV music. 4.5/52. Music is good. Bass is not as expected. But if you adjust the Equalizer, the Music is good. 4/5.3. Comfort is Pretty good. 5/5.4. Battery is also really good. 5/5.\",\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"If you are bass lover don't dare to buy this. Bass is really very bad. I have used Sony earphones and they offer pretty good bass than it. I bought this due to hype but in actuality it's not even close to my expectations. Whenever i listen to music it makes me ๐Ÿคฌ\",\n", + " 'summary': 'Terrible product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'It was a fantastic experience using this earpiece its just awesome and i loved it like anything it has all the features qnd a definitely good base with good sound quality..i was bit unhappy with its clarity else i was really impressed by its working',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"The sound quality is really good and it's worth every penny. But the unit I received had some manufacturing defect so after around 3 months of use, the volume in the left side kept decreasing for a week and then completely stopped. Thanks to the one year warranty I took it to the service centre for replacement. And they said I'll get the new one in 7 to 10 days! That's a long time for a music lover to stay without earphones... I also checked the OnePlus website and there were a lot of people ...\",\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'The quality of the headphone is awesome. Easy to connect to any mobile and PC. Sound quality and bass are satisfactory and worth every penny. Go for it!',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Bought these headphones 3 weeks backPros:1. excellent build quality2. Great bass and sound3. light weight and handy4. gives me 10hrs of battery back up5. really good quick chargeCons:1. Missing quick switch button',\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Simply outstandingReview after 5days of heavy usageFirst thing to look after when we have earphones like these is battery and it these r fentastic charge for 10mits and it serves you a whole day and even more too.The second best thing is the bass and sound quality and it is simply the best.The next thing is design and pricing. These Bullets reached these specifications too..Overal rating is 10/10 perfect.',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Product is good but as the name says baas edition it has not such a good bass but its decent sound quality is good but bass is not so satisfying',\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Sound clarity is too good in comparison of realme wireless and also bass is far better from realme wireless.bass is reaching in the core.',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Too good... At last 1+ improved in sound dept. You can feel each and every single note and the most good thing is you can hear tempo in one bud and others in the 2nd bud. I mean, the surround sound sistem is too good',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"I am happy with the product I received. Packed tightly and got genuine product.This is after 10days review.I charged for 3time only- battery backup really niceNo irritation at all while placingThere is no noise cancellation i think but voice will be clear for receiving personSounds are really amazing I will re edit again after 20daysDesign, build quality is nice and I don't feel wires will sustain for long periods use.No irritation even after placing it for 10hrs.Nice one... Good ...\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Compared to OnePlus bullets z this has far better bass and also built quality is good. The sound quality is also good....not as good as LDAC sound system but it is decent overall.',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"No doubt this neckband was a beast but reason for giving 4 star is sometimes when I use microphone during games it doesn't work properly my teammates didn't hear me properly BTW it's good choice for me only I face sometimes microphone issue.\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'This earphone is good only for music and gaming. The sound quality over call is very poor. The sound is very low for phone calls. Not recommended to purchase if using for good phone call experience',\n", + " 'summary': 'Hated it!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"Very good product. Sound clarity is fine but due to extra bass some instruments and vocals are faded sometimes! Design and build is good too except there is no cover for the type-c port! Battery backup is too good...no issues there. And comfortable too, itchiness or something like that doesn't happen after using for long hours. Microphone is good, no issues from the other side. And low latency mode best in this price range...even with a non-Oneplus device( I've a Samsung phone ). Overall valu...\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Super delivery within one day. Thaks for the filpkart delivery. Best value for price. Durable product. If u looking for a standard bluetooth headset, then go for it',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'One thing I tell you that it has high bass. Bass lover will love it. But non bass Love it is headache. But sound quality and build quality is outstanding.',\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good connectivity, battery backup and build quality. Sound quality is so average, definitely not as good as my boat rockers 255. Useful for office work, attending calls or listening to lectures. A big no for listening to music.',\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"Awesome looking and stylish all my friends are asking me for testing this product and some of them are buying. that's batter and I like that thing. Also the phone has low latency mode that's also help me in game overall good performance. Must buy ๐Ÿค—\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good sound effectBattery backup is super and bass is excellent worth of rate in this productAwesome ๐Ÿ‘',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Very good product and good quality, sound quality is very impressive bass and stereo equal tuneing, totally amazing product Flipkart delivery is very decent and very waiting for this product just 15 hours only',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Very good ๐Ÿ‘ sound ๐ŸŽค quality nice bass and treble all over excellent l.battery backup is also nice ๐Ÿ‘๐Ÿ‘๐Ÿ‘thanks to Flipkart for delivery next to the day I ordered ๐Ÿ“‘',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good bluetooth earphones but price was high for middle class music lovers .bass was good for listinining.mic was not clear in running or at bike.battery back up was nice.earphone 100% not fit into ur ears exactly . totally my opinion sound quality and battery backup good .price comparison was too High .',\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Fantastic system it has but not have bass. Sound quality is average. I would like to inform you that do not waste your money by seeing ONEPLUS tag. You can buy better Wireless Earphone at very cheap price of Boat. Sound quality good but no to appreciate!',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Now from my experience, I searched for a lot of earphones and saw each and every one... What I found was this bass edition is better than most other wireless earphones though some reviews said that build quality is not good.. what I feel is.. sound quality, bass ... Very good! Very happy about it.. Connectivity is top notch... Easy to wear... No any ear pain during long hours of usage.. But battery back up... Its been 5 days now.. I have charged it only 2 twice.. 10 mins full 100%... Wow! One...',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Battery backup is good. Charging speed also very fast. Not best but good sound quality. Worth for price. I am enjoying the product',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Nice',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"I'm loving this bluetooth โ˜บ๏ธ๐Ÿ˜\",\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good battery back up, sound should be improved',\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Best sound & bass quality',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Useful products',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Good not bad',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Amazing productSound quality super se upper ๐Ÿ’“Battery backup A1',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'OsM Baas .....I Have Been Using for 30 Days.....I always sleep around the night in my neck....No Defect No Damage.....Battery Backup 2 Days.....Charged in 15-20 mins....Magnetic Buds.....Charging Light (Red)After Charged Light (White)Premium Quality.....Noise Cancellation....',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'I loved it..',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Extraordinary just go for it.',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': '1.sound & bassโค๏ธโค๏ธโค๏ธโค๏ธ2.Product๐Ÿ˜Š๐Ÿ˜Š๐Ÿ˜Š๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Super sound quality',\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Best earphone',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'Super super head phones.the sound quality is absolutely amazing.and battery life is good.',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"I've choose red color it's amazing...๐Ÿฅฐ\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': 'nice',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset',\n", + " 'review': \"I bought this blootooth 1+one last Dec 2020 . Sound quality is good, Battery backups is very nice. But I have facing connectivity issue. It will be take 1 minutes . Overall product ok. But I'm not satisfied with connectivity.\",\n", + " 'summary': 'Fair'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Amazing Product, bass is amazing and easy to carry , Also you like the insulation of product , battery backup is very good. Satisfied With Product',\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Worth it If you think to buy a tws then it is a best option light weight easy to carry I'm Happy From This.\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good and well but still some batter time improved it will be good and I have a small fear that these buds or not fitting properly some times and may fall down that is a draw back.',\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Genuine review (after 1 week of use), I was quiet confused whether to buy these earbuds or oppo enco w11 or boat airdopes 441. Atlast I bought realme buds q in 1565/-Pros - Sound very goodBass very goodInstant connectivity to Bluetooth.Battery backup goodLight weightPremium lookLink appWater and sweat proofGaming modeCons -Not having a good responsive touch. It makes delay responses.Call quality average, not bad but not that good in outdoors.Not having that good connectivity r...',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'As they rightly say about Chinese Products: Chala Toh Chand Tak; Nahi Toh Raat Tak.Review after a month of using this product:Sound Quality Is good, above average I would call it.Easy to pair and connect.Like the fit, fits perfect in your ears.Issues: 1. If you are watching a video, after a while, you would notice that the video is not in sync with the sound. Theres a constant disconnect which cause the video to relay first and then u hear the audio.2. The right earbud has stopped wo...',\n", + " 'summary': 'Not recommended at all'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Awesome product in such a low price...didn't expected..I never loved any earphone than samsung in ear headphones even akg headphones couldn't beat that and this realme bud is exactly like samsung in ear...loved it must buy\",\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"First of all, size of the product is very small and handy, it can easily fit in your pocket. Battery backup is good as of now.Call quality is average, not expecting more...Sound quality is good for bass lovers, but not crispy. I'm using sony Headset (wired) while compared it's average.Usb type c is missing but not a issue.Interfaces - touch controls are average. Overall your budget is 1500 to 2000 consider to buy.\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"I am writing this review after using this product for more than 4 months now. ~Sound quality ( bass ) is good but not great. If you are a bass lover buy local earphones, they provide more bass than this product. Overall, sound quality is good.~Voice calls via Bluetooth is not at all impressive. If you are at a quiet place you can expect these to work just fine but if you are at public place don't even try to talk via these ear buds.~ Design is great. I love the design, fits well in ears an...\",\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Bass is not that much good . But the quality of vocals and loudness is absolutely fabulous .Although i face some connectivity problems with the left bud sometimes but overall a good purchase .pretty much much happy with my decision',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'LOVE IT ๐Ÿ‘Œ๐ŸปAwesome Sound Quality with Superb Bass and noise cancellation, So light weight and perfect fit in ear. Love these Buds specially if you compare this with any other brand in this price thanks to realme For this great deal.',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Best In this Range....... Blindly Go for it I'm writing this review after using for 30 Days*Microphone is working smoothly*Battery Backup is more than mentioned*Connecting time is 2 sec max *Fitting in ear is perfect (Customise with 3 Extra Sets of Buds)*Easy to carry*Sound is best in the range but it can be improved*Bass also need improvement\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"This buds gives such a good quality experience of listening. Fine bass and good build quality. Bt battery backup stands extremely good . I have purchased this Bud's 10 days ago since then I got fine performance from this buds.I must say worth of every Penny I spent on it.\",\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'If u want earbuds for gaming like pubgm and cod and listening to music go for it If u want for call purpose go for some other cause u have to speak very very loud so that the other person could hear my voice but all the rest things are perfect specially battery backup is so good I almost get atleast 7 hours at 70% volume when gaming from when i take the buds out of the charging caseThe design is good.There is no led in buds but only one in charging case to show that the case is charging o...',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good proudct excellent ear buds nice sound good battery backup nice design and very light weight.Thanks realme........Fabulous product by realme๐Ÿ™๐Ÿ™๐Ÿ‘๐Ÿ‘๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿซ๐Ÿซ',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"The product is best and sound quality also best and beti so nice range also nice disadvantages after 7 days the right earbud will not work it will work but charging will not support you should clean the box and you should keep the charging and it works you don't think that the right earbud is not working to be working but it won't get charged through you should clean one time and you will do charge means you will get charged Atlas I control my speech by saying that the real world so nice name...\",\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Best noise cancelling buds for this priceEven though it has no noise cancelling!It's pretty good and bass is awesome and sound quality is also good, I can literally hear the lyrics even I'm standing in the crowd and it fits perfect that you won't hear outside noise at all.\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Bought them in 1499 20 days ago...battery is 2 hrs for songs 1.5 hrs for call for a single bud. But the box can fully charge them in 30 minutes so no problem ..mic connectivity during call is also very good seems like hd calling but for a better experience you may require a calm place. Overall with brand support like real me one can buy blindfull',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Awsm',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Amazing ๐Ÿ‘',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Super Vera level iruku buds',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Very handy and also very useful product ๐Ÿ˜Ši like it โค๏ธ',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"After 2 months they are not connecting, right bud is not working since 1st week now left one also stopped connectingNote - replacement taken within a week as right side bud stopped working same happened in new also, now this review is for replaced oneDon't buy\",\n", + " 'summary': 'Utterly Disappointed'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Very nice product',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'One bud stopped working just after 10 days, now flipkart is not returning or exchanging the product, do not buy this product',\n", + " 'summary': 'Not recommended at all'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Writing this review after one and half months of purchasing. Pros:-1) Battery backup is good, not great but you can't expect more from this2) Sound is good. If you're an audiophile don't go for it, though sounds good but it would disappoint you.2) Bass is good. Cons:-1) You would hate it for its turbulences. Right pair of the bluetooth headset got corrupted in just 45 days of light using and doesn't gets connected. After talking to the customer representative, they fu*king suggested m...\",\n", + " 'summary': 'Does the job'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Goof product from realme.I am quite impressed from these',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'In one hour calling battery reduces from 100% to 10%Never ever buy this product',\n", + " 'summary': 'Worthless'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Within the return period it will work perfectly but after that too many problems you will face so don't buy this earbuds i have brought this on 12 jan and on 22 jan it's showing its true colours....I'm having connection issues, charging issue and more yet to come . Opening the box is very complicated\",\n", + " 'summary': 'Worst experience ever!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Best Quality buds',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Sound and build is pretty good but touch control not working properly.',\n", + " 'summary': 'Does the job'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Don't buy this ! Doesn't catch our voice while driving ! Waste of money and also no return policy\",\n", + " 'summary': 'Not recommended at all'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'All are good but Noice cancelation on call not good .',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Sound Quality 10/10Design 10/10Light Weight 10/10Battery Backup 10/10Build Quality 7/10Latency 9/10',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Osm product',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good product.',\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Pocket friendly worth buying sound quality is awesone bass is also good battery backup is also quite good.10/09',\n", + " 'summary': 'Good'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good prodect nice โฃ๏ธ',\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Mind blowing purchaseIt's bass is very good & battery backup is super then only one disappointed in this that's when using to talk it didn't respond correctly and it's automatically it off\",\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Battery is superb Sound quality awesomeBuild quality is goodBut value for money I love it',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Awesome sound and bass. Love this product.',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': \"Flipkart provide me a damage product. Return rejected. Don't buy this.\",\n", + " 'summary': 'Worst experience ever!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Bass is very goodOverall nice product at this range I got it @1599',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'First few days it works well...then after ...the case and earpods didnt charge ...',\n", + " 'summary': \"Don't waste your money\"},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'good sound quality๐Ÿคฉ',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Best product',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Mindblowing productGood sound qualityBattery backup to goodBut calling issuesI am parches 1564/-rs',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Unbelievable sound quality!!! Nothing is as good as this Realme Buds Q. Awesome Product!!!!',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Sound and battery life is good but touch response is very poor and not working properly',\n", + " 'summary': 'Useless product'},\n", + " {'product_title': 'realme Buds Q Bluetooth Headset',\n", + " 'review': 'Good',\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"I am very happy with this product. The U&I Titanic series sports neckband is just awesome. The sound and bass is too good. It has also very good battery life and I haven't charged it since 3 days and more to go. It is comfortable to wear and has perfect sound quality. I had an excellent experience of this neckband. It is also economical. A must buy for all.\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'I literally use my bluetooth headsets all day long, for almost every purpose. I run and skate several times weekly, and use my headset for business calls etc. ///I\\'ve had many \"around the neck\" bluetooth headsets, this by far seems to be the best!Super easy instructions, at initial power on, it goes automatically into pairing mode. The answer/accept/decline is GREAT!Definately worth the money. (And I almost never say that!!!)///Positive:- The sound quality and product product quality...',\n", + " 'summary': 'Best Bluetooth headphones for the price'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Great experience... awesome sounds quality.. noise reduction .very much comfortable in ears .. awesome build quality .stylish look that makes it different from other brand . happy...Good packing on this price range...',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This product is really good. The quality is good must buy at this price. The sound & bass is nice. Battery life lasts for a day easily. The connectivity is also great. The clarity and sound is superb. Itโ€™s very handy and not heavy. Itโ€™s easy to carry.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This is amazing product, sound quality awesome, mic very solid and the very important thing is battery backup i am shocked this is giving 19 hours backup with playing songs calling and all. I m giving five star to this product this is also low price and product is too good. Thanks flipkart love you always',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"This is Bluetooth earphone is of very good quality and make. This looks very much durable and long-lasting. Battery backup is good enough to listen to day-long music. And feels comfortable in the ears and looks unique. Bluetooth coverage is good enough to walk around the house and keep the phone somewhere else. Also the clarity and sound quality are good too. This looks like premium made and quality. And it's for a great value, Recommended to buy.\",\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Quality is Good .. Build Desine is Nice and Sound quality is Ossoum At this price.. But Charging cable is too Short i am not Happy .. But all over Headphone is Good i like it ...Battery Backup is Very good qualityThank you..',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'U&i Titanic quality is awesome and looks are pretty sober the sound quality is also good bass lovers will love it I had a minor audio very clear and awesome voice quality long hour battery back up 8 hours very awesome neck band',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Easy to hold and carry . Sound is best . Bass and treble is clear and feels like expensive brand one. Battery backup is good appropriately 6 hours .. price is reasonable. Best buy.๐Ÿ‘๐Ÿ‘',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"It's a stunning and fabulous product..๐Ÿ˜ Sound quality is good... I think wire is quite thinner... ๐Ÿ”‹ battery backup is amazing as described.... Best item for the price segment.just go for it.... ๐Ÿ‘ˆ\",\n", + " 'summary': 'Really Nice'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"What a delivery......... I'm very happy with the delivery...... I got the product in just two days....... The product is good but there is a delay for the sound it's ok but can't play pubg comfortably that's the only thing which I'm not satisfied with this product,.....\",\n", + " 'summary': 'Just okay'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Using it from past one week and this product has worked above my expectations. Sound quality is very good and battery backup is pretty awesome. Bass is very defined. Overall the product is a must buy at such a cost. Must go for this.',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This is one of the most favourite bluetooth earphone for me i used regular 2 days and its baatery backup is fanatastics and its balck clour is looks lovely for my neck anf gets it at affordable price and also charge in 1 hour full charge once agin i like so much this earphone',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"The product quality was pretty good. But i don't like that gold color. But in the price point the neckband was awesome.๐Ÿ‘\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This product is good for daily use. The sound quality is much better that I was expected. Overall neckband is worth of money. So you can buy it for daily use',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This is very useful product and quality high rated and playback time 10hr base to best the other company neckband clear voice and clear output responce.',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'The product is good but charger is small But I Loved It A Lot All family blamed me for such a order But i loved it a lot Thank U Flipkart',\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': '๐Ÿ’–๐Ÿ’–Sound is osm & bass is very good & build is super & the most important thing its battery ๐Ÿ”‹ backup is more than 8+ hrs so this is very osm superb & awesome bluetooth headset i like it very much๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅSound-4.8/5Build quality-4.7/5Battery-5/5Value for money-5/5',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Nice bass. Nice sound. Nice clarity. You will not find anything better in this range.',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"Very very good product awesome bass sound quality is genuine as well as battery backup is too good.and one of the best thing in this it's look,golden boarders make it too much good looking really loved it.\",\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Nice & I love this product sounds quality is superb and nice design',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Pros-1. Good enough BASS.2. Battery backup is good, can last 1-2 days with moderate uses.3. Can pair 2 Phone simultaneously.4. Nice disign and buttons placement.Cons-1. When you switch it on it says Welcome....... In full volume.2. While incoming call it reads callers mob No. that too in full volume, thats irritating.',\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Very good quality bluetooth neckband. The battery backup is amazing and it has good sound and bass qaulity. It is a worth buying product. It holds value for money. Very much satisfied.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Best quality earphone ever I used excellent sound quality superb battery backup looking Also Good fully worth',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"Sound quality is really good. Amazing looks very cool neckband. Bass is super good. I'm really very very happy with this earphones wanted this type of earphones from so long now i got it..\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Quality is Very good must buy at this price segment , sound & bass is very nice ,battery back up is around 7 to 8 hours easily, easy to use, build quality is quite impressive over all I just love it โคโคโค',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"It's such a great product๐Ÿ˜๐Ÿ˜, writing this review almost after 40 days. Very good sound๐ŸŽง๐ŸŽง, with huge bass.Product quality is likely ok. Battery๐Ÿ”‹ backup is insane. Range of connectivity is also good enough. Good device๐Ÿ˜‰๐Ÿ˜‰ Thanks โคโคflipkart.\",\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Awesome quality this headfone and sound quality is very nice best disgn and thank flipkart',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Very good product..sound clearly is very good ..battery is long lasting... Full day battery works while talking and watching movies .. Worth it',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Bass, super sound, very nice best quality, like this hair phone โคโคโค And Buy Now',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Very very good product value for money Bass good volume good Best battery',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Nice product with good quality sound, bass, most important it is Indian Product, Bass-5/5Sound-5/5Quality-5/5Really awesome product good investment on good product.',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Wonderful ProductAwesome product.This is really very good neckband.Awesome sound quality.Battery life long lasting.Mic is very solid.Battery back up is very good.Bass is also superb.Overall the product is must buy at very affordable price.Highly recommended.Just go for it.',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Good u&i titatnic series bluetooth neckband. It has good sound quality and good bass. Battery backup is very good. Awesome design and built quality. Good in this price range.',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Best connectivity easy nice battery good colour just switch by clicking the end button and connect then enjoy its sooo FabulousJust charge for 30-40mins enjoy for 10hrs',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Excellent quality sound in my budget, build quality is amazing and has a perfect length wire and fits well into ears, light weight and loud sound, battery lasts a day with music and calls',\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Super quality super sound bass good super battery backup, super super super',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This neckband earphone is very good in quality. Easy to use. Very comfortable and design is good. Sound quality is excellent and bass is also nice. Elegant design. According to price product is super.',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'This U&I neckband is awesome I mean seriously I got the best earphones till now. Sound is so good bass music. Easily get connected with phone, very light weighted. Very comfortable.',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Nice product ...โค๏ธโค๏ธ Nice sound.โค๏ธ๐Ÿ’ฐNice bass quality.โค๏ธโค๏ธ. And good battery backup.โค๏ธโค๏ธ This had phone value for money..And .... good parking ...i am so happy ... And thanks for flipkart...โค๏ธโค๏ธโค๏ธโค๏ธ',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Nice Products',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Best in this price Bass 4.5*Sound 4.5*Battery backup 4.9*Design 4.2*',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Super product very nice',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'very nice',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Quality is good as er price',\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Great product low price best quality ๐Ÿ‘',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': \"After 1day of use I am writing this reviewBuild quality 3/5 (the wires to the speakers are very thin. Not durable)Sound 5/5 (it's very loud)Bass 4/5 ( It's just okay type) Backup 5/5( this is something commendable. I have turned it on yesterday at 4:30 pm. Now today it's 11:52pm, it's charging for the 1st time. I have used it for almost 14-15 hours including 5-6 hours of calling. Even yesterday night I forgot to turn it off so it was powered on for whole night)I shall update from time t...\",\n", + " 'summary': 'Could be way better'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Simply good product..... โค',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'Its wonderful product in budget price..',\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset',\n", + " 'review': 'In a month only one earpiece stopped working',\n", + " 'summary': 'Horrible'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': '(1) Worth of the money ๐Ÿ’ฐ(2) Nice design & comfort ๐Ÿ‘‚(3) Good battery backup๐Ÿ”‹(4) Nice sound quality and Bass also ๐ŸŽถ',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Very good option at this pricePros: Build quality, clear sound, Lightweight, branded product at low price, perfect fitting, insta wake up technology Good bass and sound(by using other music players mentioned below) Cons: Low bass which can control by other music players like Google play music, Dub music player or third party equaliser app. You will get perfect sound by playing music on this players.',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"I hope you guys find this review helpful, well it's too soon for a review but I think it's worth every penny, Sound - Do not have high expectations for bass atleast, rest of the sound is amazing, you get a clear voice even if it turns a bit windy on roads, songs when played have a clear voice, good for casual song listening, you can watch movies and browse, sound is good even when you play games on phone.Battery backup - is amazing, I've been using it the whole day, as soon as you put the...\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'This price segment this is pretty good and love this boat product and sound quality is average bad battery backup is super I love this airdops',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Bass is not upto the mark. Sound quality is excellent. Cryastal clear sound. Boat should improve the bass quality in this airdopes. Boats other headphones having best bass .overall it's good and value for money.\",\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Loved the sound quality loved the base and the bild quality is awesome ๐Ÿ‘๐Ÿ‘๐Ÿ‘๐Ÿ‘ I love it plzzz go for it best airpods in this price buy it right now n for pubg also best it is ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ‘๐Ÿ‘',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'I ordered the product in the sale on 22nd Aug & immediately received it on the morning of 23rd Aug.I must say at this price point the product is quite good. Good sound quality, good hardware, comfortable to ears & one part I liked is that it has C type charging port.Just one thing is missing which is mentioned on the box of product - Additional earmuffs for which I will be writing to Flipkart.Rest as of now is great. Time shall tell how great this product is.',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Although design is gud in look but the sound quality is cheapest...not only cheapest...its too cheapest and annoying...๐Ÿ˜ฃNot satisfied at this price... Boat rockerzz 255 is too much better then these eardopes at this price rate... ๐Ÿ‘Ž๐Ÿ‘Ž๐Ÿ‘ŽI have boat eardopes 281 which is also very good in sound and design...',\n", + " 'summary': 'Hated it!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Worth a single penny ๐Ÿ‘๐Ÿ‘, big thumbs up.I am simply giving 5 star rating, it exceeds my expectations, those who is thinking to get something in affordable range,this airdopes are made for them only ๐Ÿ‘ .I ordered this on first sale , though I wanted to order Black color, but black was out of stock so I have to order this color which looks elegant as well. After using for a day I am writing this, this is worth to buy , don't think too much just go for it, according to price nothing is com...\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Good product with fine looks. Bass is not super good but it is ok u can feel beats.connectivity is good overall product is good but one thing hurts me is that it is not waterproof ๐Ÿ˜ญ and this is a issue for me rest I am happy because it's design is pretty cool . I had already one plus wireless earphone but whenever I use it it's neck wire irritates me๐Ÿ˜‚\",\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Yeah the Airdopes are cool , 1299 is very good price and overall I'll give it 4 starsPros:1. Easy connectivity2. Sleek and good looking design3. Very good battery backup4. Case and earbuds both are madhe of high quality plasticCons:1.There is a slight 1 second delay when music is played most of you won't notice but i noticed it while playing games.2. Ears hurt while pressing the multi functional button , touch controls could have been better3. Base is not as high as what i expected f...\",\n", + " 'summary': 'Good quality product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'First thanks to flipkart for super fast delivery.Boat has brought great airdopes in such a affordable price.Sound quality is good .Light weight .Good colors.Bass could have been better.Overall great product from Made in India Brand Boat.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Battery backup awesome...5*Bass 3* Sound 4.5*Design build 5*Lags in game audio ... Good for movies and songs ..... single earphone use feature is good... battery backup awesome , I m using for 3 hours its just 70% ...n the case is Full charged separately.....Overall in 1299 I would recommend it only if u r ready to compromise with bass ...Overall 4* ...',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Everything is fine, just need improve the bass, and one thing many users have said does not work one side, tell them u reset once and then both will work, the battery is very good and excellent performance but many people will have a slight pain in the ear while using it first time, but will not do it when they get used to it after a few days, in the last I will just say that u will not get any good from it at such a low price, THANKS boAt INDIA & THANKS Flipkart๐Ÿ˜๐Ÿ˜',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Thank you flipkart for the fastest delivery got this airdopes delivered within 24 hrs .... I have been fan of boat from past 3 years and I have been using boat rockerz bluetooth earphones and then I ordered this one amazing one in this price point ...Waiting for the another sale so that I can order one more ....Thumbs Up๐Ÿ‘Must buy product โค๏ธ',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Not at all for bass lover. The music just seems to be soft nor is it loud, there's no loudness at all. According to the price it should've been a bit more worth it building up the bass & for bass lovers there's no bass at all. Giving an honest review from the day of purchase & delivered.\",\n", + " 'summary': 'Worst experience ever!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'I never bought any kind of Bluetooth pairs, this was my first purchase and I can say this was the best purchase at this segment. The quality of the product and music is outstanding and I never expected that to in this price. Thank you, Flipkart for the express delivery which you offered.',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Worth buying, great product in this price, looking stylish, I like one feature in this we can also connect one earbud with one phone and 2nd with another phone, so that 2 people can use this with different device.',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'I think it is worth....Sound :- Sound quality is good but sometime music is stop for mili sec...btw in this price range no company provide like this...Build quality :-is good but the blue blinking light irritate me and beacuse of blue light it looks cheap...Battery :- good battery backup ...no problem',\n", + " 'summary': 'Super!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Best product you can buy in this price range. Sound quality is good and connecting speed is really fast and battery backup is also good.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Worst product ever bought. Instead, you can go and try for \"Flipkart smartbuy bass beatz\". A very decent earphones in very reasonable price. Never go for boat airdopes 131 as this is just good in look and WORST in performance. Could have given 0 star if available in option.',\n", + " 'summary': 'Did not meet expectations'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Fabulous in this range.. 1. Sound quality is very good2. Premium built quality and look.. from inside it may feel like plastic3. Battery backup is good..4. If you love bass the don't go for it..5. It doesn't block your ear.. you can hear surrounding voice while using it\",\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Nice colour nd too cute sound quality is good hope it works well',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Premium design + comfortable fit + awesome funky colours + universal compatibility with bluetooth enabled devices + great price + flipkart trust + vocals clarity + instrumental separation clear even at low volume + value for money ...Love my own latest pink boat airdope 131...๐Ÿ˜',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"It's nice overall mainly because of the low price. It has pressable button towards the outer part by pressing which one can receive/reject call, play/pause music. The bass is not upto the mark. Call quality is nice. But what else you need for such low cost. Good for those who don't like in-ear silicone earphones.\",\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Boat is just super noone can beat ....in this range best earpods .... battery is super and sound is terrificFast delivery by Flipkart thanks',\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Satisfying . Received today morning. Continuously using this earpods for 3 hrs and still battery is at 90% . So all good. Base can be better but good at this price. Good at calling also. I can hear voice while riding and that's really good. Overall worth buying.\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"It is definitely a good purchase at this price, those who don't care for loud bass and thing, they can go for this, these Airdopes are perfectly balanced in terms of sound, the sound doesn't breaks at high volumes, you can still enjoy your songs smoothly. The normal calling with this works perfectly, no as such issues there, but you may find bit issues on WhatsApp calls, as voice tends to break sometimes. You can use one airdope at a time and it works perfectly.Lastly, the battery backup, i...\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Good for the priceSound if loud and clear. Bass is there but not best as these are not in-ear type. Call quality is good. And battery lasts 3.5 hrs. Good thing is type-C I can use my OnePlus charger with it. Comfortable for long hours.Dont expect too much from the product at this price. I would say if you don't want to spend much then get this. And obviously if your priority is sound quality then Sony and Bose are only option.\",\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Nice headsets. Great sound quality. Finest design.Will be better if bass also gets improved.overall nice and best @ this price range๐Ÿ‘Œ',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'The earphone got delivered in 1 day. Speaking of sound quality the sound is good you get decent amount of base for the price. The design though is not upto the mark you cannot wear it for prolonged hours as it gets uncomfortable. The microphone is ok calling experience is ok not that great. Battery backups i cannot comment on that as I havenโ€™t used it a lot. But for the price that you are paying ,this thing is totally worth the buy.',\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'I wish to point out one very basic thing the earbuds are designed well but the material used for covering the sound outlet is no good it in good brands its steel or metal based very fine mesh, in this case it just came out to be nothing but a cloth based thin layer pasted with low quality glue. Not a good experience. Earbud without this cover is firstly exposed and not so appealing anymore.',\n", + " 'summary': 'Decent product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Awesome product with this price range. Nice build quality and very comfortable for long duration use. Impressed with the battery backup. Go for it.๐Ÿ˜Š๐Ÿ‘',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Don't expect bass... decent audio quality not so great ... Good for calls and mic works well ..fits perfectly in ear but continues usuage will get pain in ears as the size is little bigOverall value for money product\",\n", + " 'summary': 'Does the job'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Super good build quality price is better than other brands I'm fully satisfied thank you boAt\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"So actually these are very impressive at such low price. Boat has been always knows for delivering great sound. Its just the product quality should have been a bit more high because it will get scratches on the go.. One thing is that you cannot hold it for longer as the ear start paining. short duration is ok to use. I already owe One plus z buds , those are really very comfy. Haven't tested the backup but I believe it will pass that too.โ™ฅ๏ธThe sound part is actually a bit heavy and not so c...\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Some People mentioned that it had a bad bass. But its an excellent product, worthy to your money. Excellent sound and bass. batteruly Backup is good too.And also you can't expect apple airpods in such range of 1299Rs.\",\n", + " 'summary': 'Terrific purchase'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"The best in class airdopes. Great sound, perfect fit and at this price it's just awesome. Highly recommended.The only issue is that Boat has mentioned additional earmuffs with the package but it is not available in the box or it is missing.\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Mind blowing parches. Very nice headset in low budget. Go for it. I think this is the best in this price range. I ordered on 22 August and got it on 23 August. Very fast delivery. Thanks flipkart.',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'I using these Headset for last 2 days. The experience with my Boat Airpods 131 Bluetooth Headset is nice. But the price (Rs-1,299)of the product is very costly. We can expect many things for these price from other brand. When we come with brand we want to sacrifice the price.Probs:1) Very good design and build for these prize2) Bluetooth connectivity is Awesome3) Type - C Port for charging the headset is good.4) 1 year warranty5) Battery backup is upto the markCons:1) Bass of the ear...',\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"This product sound quality and comfort is good, fit very well in my ears.Connection gets interrupted when moving to another room, so connection range isn't great, just Okay.It's my first airdopes, got them for 1274/- and overall recommended for this price.\",\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"Comfortable fit, looks good, sound quality is satisfactory above average, built quality is average, connectivity/pairing is easy,Battery performance can't predict in two day of usage of this product Overall Decent product at this point of price for a TWSIF THE BUDGET IS LOW THEN ITS A GREAT BUY\",\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"This is good only... If your looking for fast beat with high bass, then don't go with this product. Else go for it and it will be worth for amount.\",\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': '1. Attractive price2. Timely delivered3. Built quality is good4. Sound quality is good5. Bass is poor6. Battery backup ( Stand-by) - 12 hrs (Continuously played) - 8 hrs7. Fast connectivity8. Comfortable on ears.',\n", + " 'summary': 'Fabulous!'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'If You really want to use a wireless airpod at this Budget you can definitely go for it... The Sound Quality is very good with low bass.! One thing I dont like about the product is the continuous flickering of the blue light in the ear. Overall a product worth for 1300/-',\n", + " 'summary': 'Delightful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Sound quality is above average and bass is low , design and look is amazing. At this price range it is a great deal . If you are a good music lover do not go for this, for call purposes it is good.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Got the device in 2 days.Fast delivery by flipkart.Sound quality is the best at this price range.Even better than realme buds air and other like mivi.Best package at 1299.Must buy',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': \"It's a nice product in this price range, but I would say a few points which boat needs to work on:1. boat should manufacture protective covers for the outer case, as I feel that it's really fragile and I'm unable to find some cover.2. It would be really good if they would have added touch controls in it. 3. The blue led which flashes in every 5 second should be turned off. It gives a really cheap look.\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Excellent product under such a tight budget...Overall great experience till nowHowever the left earphone gets discharged earlier everytime than the right one even if I overcharge the left one separately or in pairGives a continuous playback of 3.5 hrs microphone is also awesome5 star for the product',\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt Airdopes 131 Bluetooth Headset',\n", + " 'review': 'Fabulous just can say this word only. Awesome design, awesome fitting and loved the Voice .. A+',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Very Good sound clarity with bass, build quality is good, wire is tangled free , affordable price with good quality โ˜บ happy with this product.',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'nice product with beautiful design and fast delivery.... once again thank you flipkart',\n", + " 'summary': 'Worth every penny'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Built quality is very good. Bass is a bit too high to listen for longer periods. You may experience mild ear pain.If you love bass go for it, but if you rather prefer smooth and balanced sound, this will not please you...',\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'They are just awesome . no less then JBL. vocals and both are in balance.clear sound even at highest volume. And its pretty good loud too. Totally satisfied at this price.',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Very good product.. loved the color and sound quality โค๏ธ It came with extra pairs of earbuds, overall the product is nice and worth money! Thank you Flipkart๐Ÿ˜Š',\n", + " 'summary': 'Classy product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Got it by the next day of order! Excellent service by Flipkart! The earphone is awsome! the Bass and treble is as perfect to hear! If your device has Dolby Atmos or any sound enhancements them the sound is as perfect as a nature sound. Wire is enogh long. Pros:1. The sound is excellent.2. wire is enough long.3. 3.5mm jack makes it good fr any smartphone.4. It also has mic.5. It has an premium look.Cons:1. Wire is little bit soft.2. Ear buds are mat finish.',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'price wise quality good. sound good. Bass is good. Everything about it is good not excellent. wire length is nice not to short nor to long. wire is tangle free. Build quality is good. in ear fit is good. Budget wise one can go for it.',\n", + " 'summary': 'Good choice'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"The earphones looks so stylish and it's performance is amazing it offers a Great bass and it's supersonic looks is Wonderful โค๏ธ Thanks to Flipkart and boat for such a great product. Thank you thank you Thank you Flipkart so so much โค๏ธ\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'perfect one for music lovers.. Amazing bass and treble was also good.. loving it.. its a budget range gadget, I recommend it to everyone..',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"lovely one! loved the colour the design the shape the quality is absolutely fine good bass good audio quality I'm satisfied warranty card for 1 year and A small magazine is also in the box. Go for it worth the Price ๐Ÿ˜„\",\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"it's a decent product from boat, decent bass treble is good .if you want to buy a earphone that explodes with bass don't go for this one, but if you want clear punch and drums sound..than you should definitely buy this as its bass doesn't blend with treble and ruin the quality...overall nice product if you'll consider the price also\",\n", + " 'summary': 'Great product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Very good clarity, bass is also very good. I have previously used boat 225, compared to that , product is very light and prefectly fits in ear. Bass is slightly lesser than 225, clarity is very good somewhat better than 225, can hear every beat, microphone is also very good.Download a decent equalizer and you are all set.Last but not least ,awesome delivery by flipkart.',\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'very good product . satisfied with it. good sounds quality. and very good while gymming. Worth it.',\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Nice headphone.I have used both 100 and. 225 bassheads.the wire quality is also not so bad compared to bass head 225 and the best thing is in 225 the bass is over normal and so normal treble and vocal get suppress.But in 100 bass heads the sound is just balanced and bass is super and over all sounds awesome , if want a earphones and don't want over bass with suppressed treble and vocals then go with bass heads 100 where everything is balanced and. awesome.\",\n", + " 'summary': 'Nice'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"This earphones are recommended by mePros1. Very good sound quality, bass is well balanced with trible. 2. Light weight.3. Good wire quality.4. Mic is good and button is very useful for pause and play next song, also end call.5. Strap is useful. Cons1. Lack of 'L' shaped 3.5mm jack. 2. Position of buds are curved so always need to see which one is left or right.\",\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"After 6 month it won't work properly it's better to select other product than this even warranty is of no use they don't provide proper information it's better to select other than this even it's normal than other earphone\",\n", + " 'summary': 'Waste of money!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'not a good one ..I buy it seeing the review but it seems a local one ..even if you will get like the same on Flipkart at a cost of Rs 200 but only thing is no branding will be there. sound quality is not good bass is like a phata hua dhool...',\n", + " 'summary': 'Hated it!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'best sound products for me strong bass I got this in earphones thank u boat & thank u flipkart',\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Best budgeted earphones, build quality is so good that you can fold them without any fear of tearing. Best part is it's bass and an awesome sound experience. Best earphones till used by me. โค\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"The best earphones I've ever ordered. They are very handy, cute and the sound quality is superb! The delivery was before time. Got it 3 days before the due date. Thank you Flipkart !\",\n", + " 'summary': 'Must buy!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"very good product in this price segmentBass is not high that's a pretty good thing.Vocal is also good.overall it's value for money.ND Flipkart delivered it to me in 2 days that's also good.\",\n", + " 'summary': 'Perfect product!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Clarity os good but the bass is low and the treble is high. Wired is comparatively good as per it is not the braided cable.',\n", + " 'summary': 'Pretty good'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'One of the best under 500 if you can get ,started loving from the first day.Clarity of microphone is awesome.Bass is really good with equalisation of treble .Build quality is beyond level.Thanks Flipkart โค',\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'look wise good but after 15 days it is available for just looks only ,, very bad in 15 days one side is not working properly',\n", + " 'summary': 'Very poor'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'I purchased one month back. now when insert into mobile phones the volume automatically reduced to zero without headset the volume function works normally. same connect to other phone also volume reduced. when we hear through other headset the volume function works effectively',\n", + " 'summary': 'Very poor'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"I just loved it .....nalla niz product.pwoli sadhanam at a relatively affordable price, niz one it's good and worth for money\",\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'i purchased this headphones about 1 yr ago 1st six month they run perfectly & nicely but after 6 month 1 side stops working sound comes only when i adjust the wire here & there but they gave you 1 yr warranty time so i got replacement of this produ but again after 6 month one side stops working & only runs if you adjust the wire basically this headphones has 1 yr life (by my experience)confused but still want to buy this coz in moderate price (375) it runs 1 yr this is my Honest re...',\n", + " 'summary': 'Fair'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"sound quality is very clear and the bass is also very good ๐Ÿ‘Œ๐Ÿ˜Š worth the money... I'm fully satisfied with the product ๐Ÿ˜‰๐Ÿ˜Š๐Ÿ˜\",\n", + " 'summary': 'Simply awesome'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Such a nice product ๐Ÿ˜Š and the sound quality is good and bass is nice.And the design is so beautiful ๐Ÿ˜Ž',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Cute color, wonderful sound and fits good to ear. I am using these for a week now and I'm really liking it.\",\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"For whom i bought it she got surprised & also satisfied with this product & ofcourse i had a great faith on Boat headphones. I'm using since 2017.โ™ฅ๏ธโ™ฅ๏ธ\",\n", + " 'summary': 'Nice product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"This Ear phones is very nice. But it's not comfortable to use calls because the volume controller and voice mic is too long that's Y it's not comfortable to take calls Otherwise it is excellent Sound and base Volume after 6(Six) Months it's not working\",\n", + " 'summary': 'Worth the money'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"very good sound value of money . Best in the market, can't get so good earplugs in this money\",\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"I bought 1more and boAt BassHeads 100 headphones together, sound clarity, volume, bass and treble of boAt is much better than 1More. Comfortable ear buds, Zara Hatke design, sleek packaging. You don't wanna listen to music without boAt headphones. Truly price worthy.\",\n", + " 'summary': 'Just wow!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'ONE OF THE BEST HEADSET AT THIS PRICE๐Ÿ‘Œ๐Ÿ‘ŒGOOD SOUND QUALITY AND BUILD QUALITY IS ALSO AWESOME. BUT BASS IS NOT AT THAT GREAT BUT EVEN GREAT AT THIS PRICE SEGMENT. GO FOR IT GUYS. ALSO IT IS BEST FOR PUBG MOBILE.AWESOME',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'simply awesome, nice quality but earpiece should little convenient with ears and the cable need atleast 6\" more. have a excellent sound quality and deep bass. love this product. keep it up boat.',\n", + " 'summary': 'Best in the market!'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'l am happy with that purchase.... l like the design of the headphone.... l like the quality of the bass also...',\n", + " 'summary': 'Very Good'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'zero bass. not worth the price ..better headphones for half the price like Flipkarts very own .build quality is ok .. headphones fits good in Ur ears .but important is sound quality which it lacks',\n", + " 'summary': 'Useless product'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"First of thnq too flipkart for Quick & fast service & it's sound quality is good , design awesome , & this price segment that earphone is pretty nice worth of money\",\n", + " 'summary': 'Terrific'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"I'm so so happy Very good product So so beautiful Sound effect super And also got it warranty card\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Prefer buying JBL C200SI, but at this price point, its good. If the jack would have been gold plated, it would have been the best wired earphone. It's design is great and is really comfortable. If you use it rough, it could last by mid of 4th month from the date of purchase. So yeah it's good.\",\n", + " 'summary': 'Highly recommended'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Just a Wow product BoAt and amazing ๐ŸššDelivery by Flipkart in the same day I ordered. Thank you Flipkart!!๐Ÿฅฐ๐Ÿฅฐ Just loves it !',\n", + " 'summary': 'Excellent'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Perfect bass perfect build quality i hv been use it for past 2 months and it comes out with great performance... really Worth it :') for genuine music lovers...\",\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Amazing headset no words for it. sound quality is very very good. Bass quality is awesome. Looks very beautiful and decent. Thanks to flipkart for providing this amazing product.',\n", + " 'summary': 'Mind-blowing purchase'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'One of the best earphones I have ever tried....I highly recommend this to anyone who is looking for best budget earphones for PUBG....and also for listening music!',\n", + " 'summary': 'Awesome'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'nice product.. color is exactly shown in the pic. best headset in this price range.. worth buying.. i ll suggest this product under this cost.. loved this headset from boAt.',\n", + " 'summary': 'Wonderful'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'Awesome Headset . I was searching for the same on Amazon however price was aboce 699/- and finally I got then on flipkart for just 399/-๐Ÿ‘. Really Happy . Yes one area of improvement could be the timelines of delivering the product can be shorter',\n", + " 'summary': 'Brilliant'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"It's a really perfect earphone. I love it . Sound quality and base is too good in this cost.\",\n", + " 'summary': 'Fair'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': \"Good earbuds at this price Range and Boat provides good product at Low budget and I think if you're looking for a earbuds that is good and your budget is Low than must Buy.\",\n", + " 'summary': 'Value-for-money'},\n", + " {'product_title': 'BoAt BassHeads 100 Wired Headset',\n", + " 'review': 'a very good earphone in budget sound is awesome very pure sound but the bass is ok ok.. you can go for it without thinking much',\n", + " 'summary': 'Wonderful'}]" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# list of dictionry for each product for json format\n", + "\n", + "# summary provides the real sentiment of the procduct\n", + "\n", + "pdt_list =[] \n", + "\n", + "for index , row in f_df.iterrows():\n", + " pdt_dict = {}\n", + " pdt_dict[\"product_title\"] = row[\"product_title\"]\n", + " pdt_dict[\"review\"] = row[\"review\"]\n", + " pdt_dict[\"summary\"] = row[\"summary\"]\n", + " pdt_list.append(pdt_dict)\n", + "pdt_list" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': \"1-more flexible2-bass is very high3-sound clarity is good 4-battery back up to 6 to 8 hour's 5-main thing is fastest charging system is available in that. Only 20 min charge and get long up to 4 hours back up 6-killing look awesome 7-for gaming that product does not support 100% if you want for gaming then I'll recommend you please don't buy but you want for only music then this product is very well for you.. 8-no more wireless headphones are comparing with that headphones at this pric...\", 'summary': 'Terrific purchase'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'Super sound and good looking I like that prize', 'summary': 'Terrific purchase'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'Very much satisfied with the device at this price point being from an awesome brand. Design wise , I liked it more than rockerz 255 model.Bought the model blindly on its very first day with zero reviews and it was a wonderful choice I must say.Bluetooth 5.0 enables us to connect devices simultaneously. And vibration motor for calls , its too good.', 'summary': 'Super!'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'Nice headphone, bass was very good and sound is clear. I am purchase for calling purpose and best choice even riding on bike wear in one ear and opposite end voice was clear and no complaint for calling.. Battery backup 1 full day', 'summary': 'Super!'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'Sound quality super battery backup super quality super this price range super and this value for money', 'summary': 'Terrific purchase'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': \"Wowwww it's amezing bluetooth nice look, nice price, nice battery back up, I love always flipkart product's and Flipkart replacement and refund policy, you can return or refund after received a demegzed product\", 'summary': 'Wonderful'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'Awesome colour! Amazing experience .. but only the charging data cable is not of good quality and adjustable clip is not so tight.', 'summary': 'Pretty good'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': \"For the first time, I am posting a review, just because the product compelled me to do so. Icouldn't find a single aspect missed or mis-handled by Boat. Well this is called, quality engineering. Well, some people say Boat enhances bass and thus compensates with clarity, but I would give my neutral and true feedbackBass : 10/10Clarity : 9/10Comfort ease n looks : 15/10Features :10/10The best buy from flipkart yet..\", 'summary': 'Terrific purchase'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': 'First of all the Delivery boy is a good guy. Nice receive and responce. Product is super. Packing also good. I fell Red color is not sufficient for me. Otherwise totally awesome product. Delivery is too long. Iam taking one week after booking. Thankyou flipcart and boat 235v2 also.', 'summary': 'Delightful'}\n", + "{'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset', 'review': \"This headphone is good but not that much as i expected*Pros- 1Good battery backup 2Good sound quality*Cons-1 There's a voice gap between video activity and voice. Voice comes after video activity not both comes together. It is ok when you watch movies and music but if you play pubg with it you will clearly feel the big gap it matters a lot for me. It is not working after 4 month very much disappointedOverall not goodDon't buy please\", 'summary': 'Worthless'}\n" + ] + } + ], + "source": [ + "for each in pdt_list[:10]:\n", + " print(each)" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [], + "source": [ + "from langchain_core.documents import Document" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "final_doc_data = []\n", + "for each in pdt_list:\n", + " metadata = {\"product_title\": each[\"product_title\"]}\n", + " final_doc_data.append(Document(page_content= each[\"review\"]+ \" \"+ each[\"summary\"], metadata=metadata))\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Langchain stores the data in the document format , allows the LLM to understand the data more easily" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Document(metadata={'product_title': 'BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset'}, page_content=\"Wowwww it's amezing bluetooth nice look, nice price, nice battery back up, I love always flipkart product's and Flipkart replacement and refund policy, you can return or refund after received a demegzed product Wonderful\")" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "final_doc_data[5]" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "# del final_data" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "newinv", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.0" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/mainproject/pre_process.py b/mainproject/pre_process.py new file mode 100644 index 0000000..fe630e8 --- /dev/null +++ b/mainproject/pre_process.py @@ -0,0 +1,26 @@ + +import pandas as pd + +from langchain_core.documents import Document + +def convert_to_doc(): + + df = pd.read_csv(r"C:\Users\mahik\Documents\Git_serious\e-commerce-chatbot-end_to_end\sample_date\flipkart_product_review.csv") + + f_df = df[["product_title","review","summary"]] + + pdt_list =[] + + for index , row in f_df.iterrows(): + pdt_dict = {} + pdt_dict["product_title"] = row["product_title"] + pdt_dict["review"] = row["review"] + pdt_dict["summary"] = row["summary"] + pdt_list.append(pdt_dict) + + final_doc_data = [] + for each in pdt_list: + metadata = {"product_title": each["product_title"]} + final_doc_data.append(Document(page_content= each["review"]+ " "+ each["summary"], metadata=metadata)) + + return final_doc_data diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d124e52 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,15 @@ +streamlit + +google-generativeai + +langchain-google-genai + +python-dotenv + +flask + +PyPDF2 + +langchain + +langchain-astradb diff --git a/sample_date/flipkart_product_review.csv b/sample_date/flipkart_product_review.csv new file mode 100644 index 0000000..a02b9ff --- /dev/null +++ b/sample_date/flipkart_product_review.csv @@ -0,0 +1,451 @@ +product_id,product_title,rating,summary,review +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific purchase,1-more flexible2-bass is very high3-sound clarity is good 4-battery back up to 6 to 8 hour's 5-main thing is fastest charging system is available in that. Only 20 min charge and get long up to 4 hours back up 6-killing look awesome 7-for gaming that product does not support 100% if you want for gaming then I'll recommend you please don't buy but you want for only music then this product is very well for you.. 8-no more wireless headphones are comparing with that headphones at this pric... +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific purchase,Super sound and good looking I like that prize +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Super!,"Very much satisfied with the device at this price point being from an awesome brand. Design wise , I liked it more than rockerz 255 model.Bought the model blindly on its very first day with zero reviews and it was a wonderful choice I must say.Bluetooth 5.0 enables us to connect devices simultaneously. And vibration motor for calls , its too good." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Super!,"Nice headphone, bass was very good and sound is clear. I am purchase for calling purpose and best choice even riding on bike wear in one ear and opposite end voice was clear and no complaint for calling.. Battery backup 1 full day" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific purchase,Sound quality super battery backup super quality super this price range super and this value for money +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Wonderful,"Wowwww it's amezing bluetooth nice look, nice price, nice battery back up, I love always flipkart product's and Flipkart replacement and refund policy, you can return or refund after received a demegzed product" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Pretty good,Awesome colour! Amazing experience .. but only the charging data cable is not of good quality and adjustable clip is not so tight. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific purchase,"For the first time, I am posting a review, just because the product compelled me to do so. Icouldn't find a single aspect missed or mis-handled by Boat. Well this is called, quality engineering. Well, some people say Boat enhances bass and thus compensates with clarity, but I would give my neutral and true feedbackBass : 10/10Clarity : 9/10Comfort ease n looks : 15/10Features :10/10The best buy from flipkart yet.." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Delightful,First of all the Delivery boy is a good guy. Nice receive and responce. Product is super. Packing also good. I fell Red color is not sufficient for me. Otherwise totally awesome product. Delivery is too long. Iam taking one week after booking. Thankyou flipcart and boat 235v2 also. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,1,Worthless,This headphone is good but not that much as i expected*Pros- 1Good battery backup 2Good sound quality*Cons-1 There's a voice gap between video activity and voice. Voice comes after video activity not both comes together. It is ok when you watch movies and music but if you play pubg with it you will clearly feel the big gap it matters a lot for me. It is not working after 4 month very much disappointedOverall not goodDon't buy please +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Simply awesome,It's a very good product ... I'm so happy with this BCz its bass quality & sounds is too good & batry back up Also super +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Good choice,Nice build quality.. bass is best it self.. vibrate at call is nice. .. nice support from flipkart and delivery partner +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,1,Terrible product,"After using for about 8 days, right side of the earphone is not working properly and the volume on right side is very low. I didn't expect this." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,1,Useless product,Mic is not proper recipient persons can't hear proper sound ( every time for call I heard from front I can't hear you so I have to again talk to through Mobile phone no Option useless of wirless meaning) and sound quality is so loud. Like local headphones. not comfortable to wear for more than1 hrs of uses.tere is no meanings to get replaced again you get same product therefore this is wast of money. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Wonderful,"Wow flip cart super fast service like express speed delivery I order 11 am delivery At 5pm I am very happy, boAt Bluetooth headset is very very excellent product fast charging super totally user friendly go for it" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Fabulous!,Very great product at this price I will assure that this is a value for money product and the bass and sound quality was awesome the build quality was great ๐Ÿ‘Œ and this product has a mat finish which gives a class and flagship look this is the best and the fast charging technology was working very well and the ear are fixing suitable in our ear the music quality was great +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Very Good,It's very good and its bass is very high This bluetooth is very good best value or money but battery is too tiny.....Battery backup is not long time but it's realy fast charging support so little battery is comfortable with fast charging +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Excellent,"Good product. Never used bluetooth headset before. Now I am happy to see ease in my work. As I noticed boat marketing their products aggressively in market in recent days. About product it's like awesome having better build quality, bass is good, battery backup is fine and vibration though it vibrates my neck when ever I gets call but still feature is must needed when u are driving. Wanted to give 5star but there is a sentence that "" Nothing is perfect in this imperfect world"" ๐Ÿ˜„๐Ÿ˜„๐Ÿ˜‰" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Awesome,"This review is after 1 month of use .Pro:- 1.Battery backup is genuinely too good, runs almost 1.5 -2 days on a single charge.. and 8hrs on continuous playback.2. Charge very fast,,, 40% just in 15-20 minutes3. Sound is crisp,clear and decent, not too loud. 4. Build quality is awsome nd stylish as well.5.connectivity is super fast nd good with phones.6. Last but not the least,,, its really comfort able nd i didn't feel any discomfort or pain even after continous use of 5 hrs which i ..." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Excellent,I like It Boat HP Sound Quality is bestm best And Bass Quality is to good And New V2 product is to good & Fast charging is besttt to save charging timeing.... +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,3,Does the job,"Hi Seekers, I am writing this review after 2 weeks of daily use, lets start with pros and cons Pros-โœ“Sounds Quality is goodโœ“ Bass is good enoughโœ“ Look is okay as per this price range โœ“ All essential controls are providedโœ“ Backup is decentConsxx Bluetooth range is too short (even if you are walking by holding phone in your hand you will feel connection disturbances at all times)xx In case of battery get low it continuously gives you a voice signals in every 2 seconds I found its ver..." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Nice product,Great product.. I loved it.. As I was using level U.. This product is much more better than that.. Though battery life is just like 8hrs and bass like goosebumps... But when increased bass earplugs starts raddling.. Vibrate feature is awesome.. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Nice product,"Awesome product happy to have one.Good sound quality in medium volume, with equalizer app could complete the high bass sound. Battery last long 20 min of charge to enjoy whole day.Very light weight, Easy to carry," +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Good quality product,It's a very good product... I'm so happy with this Bcz it's bass quality & sounds is too good & battery backup also superb +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific,"Amazing product Sound quality was awesome, it has deep bass which I really wanted, I am really satisfied and battery backup was also nice and it also had fast charging facilities" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Really Nice,I think it is the best product in this price segment I buy this product after seeing it's sell figure and my decision got right u must buy this product I love it's sound quality but the build quality must be improved and they must give charging adaptor out of the box +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Must buy!,Best product at this price loved it. Thank you flipkart for safe delivery ๐Ÿ’ฏ๐Ÿ˜ƒ +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Really Nice,Excellent voice clarity superb bass for music lovers. Overall a very good product. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Mind-blowing purchase,"This earphone is just awsome yaar , everything is just so perfect yaar just go for it blindly ,i tell you u cant find a best product at this price its awsome๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Best in the market!,It is an amazing product.. For this price... Less weight.. Flexible.. Super sound... Extra feature is call vibration.. Nice one.. Try it.. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Excellent,The product was good enough.. Stylish blur color with well designed earphones.. Coming to the specifications sound and bass was superb... Value for money... Batery backup is also good around 6 hours life.... No lag in PUBG... Highly satisfied but have to wait and see how long it works like this +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Worth every penny,Boat headset is very clear voice and bass is v good and plus point is fast charging 20 mint to 4 hrs batery backup... One of the best bluetooth headset....osmmm products +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,3,Nice,"A fine product i would say , well crafted design and good build quality .. good fit and comfortable to wear ... enough bass to provide u good sound experience .. although not the most premium quality but still considering the price it's well ahead of it .. manages lows and highs well, sound mixing and good listening experience when it comes to music video and others ..the only CON i noticed was the microphone .. i think this device is not built for calling ... sometimes the voice is not eve..." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Wonderful,Good product very fast delivery (with in 36 hours only) superb color love it +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Nice product,Boat rockerz 235 v2 is the budget blutooth hearphone. All are very good performance only sound quality is slightly poor.. vibration and battery backup is the best part in this product. Bass also very great .. just lysric clearing not proper +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Best in the market!,If you are a bass lover then blindly go for it . And I think 8 hours of backup is enough and 4 hours charge in 20 mins .what else we want . Superb +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Nice product,"Review after about 2months of usage.Before starting let me be clear, THIS DEVICE IS NOT FOR SERIOUS MUSIC LOVERS/AUDIOPHILES.I'm not gonna repeat the same technical aspects of it, you already know what's inside it. So...Coming to the sound, if you just love some BASS and heavy sounds this earphone will become your best buddy in no time. The volume on this is insane. I only use it at 20-30% max. It's very loud. So no complaints there.If you've used some premium earphone from brands lik..." +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Wonderful,Im a jbl user ..boat 235v2 battery is too good to stay 2 days..fast charging..bass is 5 of 5 but sound of vocal is 4 of 5.. mic is good ..although i bought this in 1299 ..in this range its good +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Awesome,The boat 235v2 is really good it's sounds very clear and also good bass. If you think buy a Bluetooth headset go for It. Just sounds and battery backup is awesome. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Pretty good,"Above from my expectation, after reading the review i opted for not to purchase this product but guys you won't believe it really work, too good sound quality, superb bass overall it is lovelly one....will make ur day sweet.......bass lover will loved it.This boat 235v2 is better than boult pro bass product coz i ordered both the earphone jst as to compare the quality and boat rockerz is jst uncomaprable...perfect tune...superb acaustic....voice calling is far better that boult earphone........" +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Wonderful,I brought this product as I was looking for a sweat proof headset for my workouts. I got it for 899 and I have to say that am pretty satisfied with the features and the quality that the headset has to deliver. I would definitely recommend this product to my family and friends. Just go for it !!! +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Just wow!,Ti's is my first Bluetooth headset it is wonderful and color is more attractive and the sound quality is good and it is good product and value of money is 5star and battery is good +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,4,Very Good,Very decent look product. Give superb bass. Mic quality is okok. Design and build is superb. In this price range it worth it. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Awesome,Good quality and good product you have to take you will enjoy ๐Ÿ‘๐Ÿ˜ I just love it ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ’ž +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Highly recommended,Awsome Sound Quality 5 * !!Bass Is Awsome 5* !!Degin is Good 3* !!Battery backup much Good 4* !! +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Fabulous!,It so nice but nickband so tall but otherwise is best headphone call vibraion and fast charging nice product..... +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Excellent,It's a Awesome purchase. Value for money. I can't expect that type of sound and connectivity will get in this price range. Last time I bought Boult ear buds and refunded due to charging issue and connectivity issue. That sound was not as powerful as this Boat headphone provides. Really happy to advise all of you if are searching for Bluetooth headphones please go for it. You will get everything you are searching for. Thanks Flipcart. And request all of you please go for only Indian Products. +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Awesome,Very nice very satisfied and sound quality very good bass is excellent overall worth it +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Terrific purchase,First of all it looks very perfect and is non fragile and awesome experience using this.....just fast delivery and well packed ....just perfect qs a product can be...and the best part is its mindblowing sound quality thunping my ears..... +ACCFZGAQJGYCYDCM,BoAt Rockerz 235v2 with ASAP charging Version 5.0 Bluetooth Headset,5,Best in the market!,"I think for this price range, it's one of the best available in market. sound quality is good and loudness is nothing short of excellence. Bluetooth connectivity is too good. Satisfactory with looks and build quality, could have been better." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Fabulous!,I will tell you some hidden features that you might have not heard and will summarize my review as follows first:๐Ÿ‘‰Sound quality is 4/5๐Ÿ‘‰Build and quality 5/5๐Ÿ‘‰Features 5/5๐Ÿ‘‰Looks 5/5๐Ÿ‘‰ Battery 6/5 yes its 6/5๐Ÿ‘Œ๐Ÿ‘‰Overall price to product 5/5๐Ÿ‘ˆ๐Ÿ‘ŒIf your Budget allows you can buy them they are really greatNOW SOME HIDDEN Features not actually hidden but yah that many you have not heardRead the full para for correct infoThe major con you hear is that it doesn't have โšกoff button โšกBut... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Good quality product,"PROS: best in budget, with a good bass most loved thing is ๐Ÿ”‹ backup. 1hour charge gives minimum 10 โœŒ๏ธ๐ŸŽง enjoymentMagnetic attaching helps more to improve battery life more๐Ÿ˜CONS: (1)sec ..delay in sounds in pubg๐Ÿ˜‘ the only disappointment in these, I bought this for pubg streaming but they bit late in sounds I don't recommend these for pubg player and for gaming it's not worth writing this after 1week hope u find these a useful review ๐Ÿ˜˜" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Terrific purchase,nice very beautiful Realme buds Very good soundbass quality very nice battery backup good +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Simply awesome,"in love with thisthe auto turn off when magnet sticks is very handy and saves batteryaudio quality good...balances between the highs and the lows good mids alsoi have used skullcandy inkd as well as boat rockerz 225as a comparison, skullcandy handles every frequencies without any distortion, gives a great quality and feel to the audioboat adds bass to the normal audio which makes it distorted at large volumes and long usage timescoming to realme, it is far beyond boat in terms of audio..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Good quality product,"Everything is Good Only Bass is Little bit Less as compare to Boat Rockerz 255But Except Bass Overall Is Awesome And the most amazing Function is Auto connect, when separate ear buds from each other it's connect automatically with previousaly connected device within 2-3 secon. Battery backup is also good as They commit. 10-12 Hr And. fast Charging. The most Attractive Design which looks Too good with premium Material and Comfortable Ear Buds. Go for it." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Excellent,I am writing this review after using this product for 3 weeks and I am very happy with this product I am giving it five star ???? ? ? I must say it is a very nice product and you can buy this product blindfold it is a very great battery backup and the song quality is very very nice and it is light and easy to use +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,"These earbuds are the best you could buy. good build quality, excellent sound and bass. Mic works excellent even while riding a bike. Audio is clear and the battery last long too. Idk exact hours.Realme, you've outdone it๐Ÿ˜" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Delightful,"After using Portronics Harmonics 208 and many research I found a good wireless headset( Realme Buds ).One of my friends using boat225, all god but disappointed with voice clarity and built quality.RealmeProsMagnetic standby, awesome feature saves battery.Google assistant.Sound & Built quality is good.Soft buttons.Fits good and perfect in shape.Voice cancellation while speaking is excellent.Wire size is good not too long, not too short.ConsWhile not speaking other person can hea..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Worth every penny,"This is my genuine review after the use of 7 days ki The perfect wireless headphone in this range infact more than perfect .There are no cons in this earphoneSome highlighted pros due to which , daily & daily u will fall in love with it & always think urSELF Fortunate are:A+ battery lifeA+Sound qualityMagnetic function is super ๐Ÿ˜˜" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,1,Did not meet expectations,"I'm a music producer and I find this earphones good but it's not worth the price, you can choose one plus instead or infinity by jbl for crystal clear sound quality, real me buds is loud cause of the driver (11.2) but it's not clear and you'll get a head ache after using it for a while , they say it has good bass but it doesn't , if you want good bass and clear sound of each and every instrument, go for one plus, jbl , infinity, skull candy or sony. Don't but real me buds" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Brilliant,very nice product and best sound quality very fast delivery because i ordered yesterday and delivery in next day afternoon nice design good bass quality nice packaging clear voice quality better than boat 255f rockers +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Wonderful,"Realme Buds Bluetooth used details and ratingBattery : 14 hour Music Playing 5/5Key Controller : 4/5Design : flexible velvet type ,-- , ~~ () 5/5Colour : Green 5/5Charging time : 1h:20m full charge 4/5 Stand by : 7 day and 3hour music playing 5/5Music and Bass : good quality , Bass 4/5Compatible : Good , 4/5Bluetooth connection : โ—Pairing in 4 second,,, โ—paired device auto connect 2 second to 4 second . โ—My device 3 second auto connect . 5/5Bluetooth range : โ—Straight 75..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Brilliant,"Got this free with Realme X2pro, but this product is good enough in its place.1. Sound quality is good2. The rubber material is so soft n comfortable to put it on.3. I love the feature in it, that you don't need to waste your time switching it On or Off. Just detach from magnetic bond and it will b switched On n put it back to magnetic bond n it will switched off.(the best feature I have ever got to use)The only problem is there is no cap at the charging point as it is open always. Weari..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Classy product,I would like to thank Flipkart for delivered this product with in time ... It's really amazing .. nice battery backup and inbuilt quality... But you need to improve bass quality .. thankyou .. +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,amazingly superb... very good product and i strongly recommended to all who searching good Bluetooth headset with good sound quality and long lasting battery backup. i'm using it since 1 week and didn't charge it yet isn't it amazing. +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Worth every penny,Yo guys this product is much super than i have ever experienced and expectations .The bass is so good and the clarity is also is muchu better compared to boatz .if u checking this out to buy there vwill be no regret in buying this . so comfortable to carry and light weight. the magnetic this is so use full and it has a range of bluetooth of over 2 rooms . it's one hell of a product for this price range .. plz consider this if u are a budget . +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Terrific,No doubt.... This is an awesome product by REALME.. .. And I am very happy for this product. Later I bought MI Neckband and The sound quality is not good but not too bad.... I feel bored ....But REALME EAR BUDS IS TOO GOOD IN SOUND QUQLITY . PREMIUM QUALITY BASS.... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Good choice,Pros-Very good battery backup(10hrs) Good sound(loud) Nice build quality Magnetic on off is superbCons- bass is not satisfying Not fits in ear(speaker drum is too big) charging point is opentips- use bass booster for great bass experience +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Best in the market!,"Built quality is very good. Sound is clear & crisp, you can hear without losing any beat. Vocals are also good. Bass is quite balanced.Great connectivity. Battery long almost 11 hoursI got it with my Realme X2 Pro. But even if I have to pay then worth the price. Thank you Realme for this awesome product." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,Awesome I think I have made a good choice especially as I travel to work so this will be my good partner..๐Ÿ˜‰ +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Terrific purchase,in love with realme products .. Good thank you flipkart &realme good experience with realme x2 pro with this headphone.. +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,3,Fair,"Everything is just fine, but in sound, music and bass I would say that the boult probass curve band sounds much better crisp and clear that this. And the price for that is lower than this." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,3,Good,"everyone is saying it has punchier bass, but after experiencing i don't feel it has punchier bass,bass is average.overall sound quality is average, vocals and treble are goodmagnetic on off function works great build quality is awesome" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,It's a very nice headset with great bass and treble delivery with a nice build quality and it's so light that one cannot feel it after putting around the neck. The connectivity is good enough but the range could be a little better and love those features offered in this price range and the sound quality is also great with crisp treble and semi high bass Some minor highlights to be noticed :1) Sound quality is great in this earphones but with different devices you need to configure the sound... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,After using 15 says I'm writing a review done quality is awesome bass is is awesome design and build is awesome battery is great but not that much hope much you are thinking over value for money thanks Mr. madhav seth and realme +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Terrific,"Got today only, one day prior, very good Flipkart and ekart. I m movie n music lover, so i search and compair too many earphones nd now i chosen realmi buds About buds Design is very great.Sound quality is much good but i think wired ear phone much better experience from this. No such deep sound quality i get from this bud, but its decent. Bass quality depends on phones equaliser, i have my realmi 2 pro so that i can hear good bass quality from that.Fitting in my ear also comfortable.Co..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Brilliant,"Really appreciated this product from realme ..... Satisfied fully ...... If u like deep base , high battery backup n light weight Bluetooth headset , thn i suggest u to take this ..... Its main feature is battery backup ... Its almost 12hrs i am playing continuous music in these n charge is nt down ๐Ÿ˜" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Highly recommended,I am very happy with this product. its just wow! i loved it.Only one thing i didn't like is led bulb is not turn red into green or other color . when its full charge it always red .so you have to check after some time.Whether full charge or not. +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Pretty good,Sound quality awesomeCall quality ok Bluetooth range unpredictable at this price point superb connection.Design just wow and classy not too long not too short.Battery backup amazing Just one con which is sound delay in pubg Not recommended for pro pubg players they should use wired one.If u liked the review pls give a live +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Wonderful,I am giving this review after 14 days of rigorous use.Sound quality 10/10 (better than one plus z)Build quality. 9/10. (slightly lower than one+ z)Bass. 10/ 10 ( better than one+ z)Battery 7/10. (One+ z is far ahead)All these rating are based on all earphones below 2000( wireless). If u r a corporate person and had to attend a large no. Of calls go for one plus z If u r sound lover person realms buds are a leap aheadPros- real me are great in its own wa... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,nice product.. good bass.. great design.. superb battery back up +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,"Best bluetooth headset so far. I have used JBL, Boat, Portronics. This one is lightweight, sounds perfect and the charge lasts for days. The best part is that it has an amazing mic, unlike any other BT headset I used in past." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Simply awesome,"hi all... I waited so long to purchase a nice Bluetooth earphones.. and searched a lot by considering lot of products with different technical specifications.. a last I found one... it's called realme Bluetooth headset. believe me bass is really nice... not just nice.. it's astonishing. Positive aspects are :- sound quality, battery life-10 hours u can expect, build in quality, it's design is smooth and you can feel the price, metal filters inside buds as shown in picture, smoot..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Must buy!,awesome...it's just awesome...the sound the battery life and the looks ...it's Superb and auto connect and disconnect feature is super fast and gives you a very long battery life .... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,"Super bass, easy to pair, crystal clear sound, excellent product in this price range." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Simply awesome,NICE WONDERFUL & JUST AMAZING AND AWESOME...BATTERY BACKUP I JUST APPRECIATE THIS .... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Just wow!,I m writing this review after 2days of extensive use of this product. I find a lot of good things like its design and build quality believe me it is in this segment like its flexibility and black yellow combination matches your outfits. Coming to its sound quality it is smooth for all kind of musics but a little bit higher bass makes odd sometimes i think this is negligible. And last its battery back up after receiving this product i first go for charging and make it full of charge and coming... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Worth the money,Nice earphones but have a small issue with button can't press perfectly as it is close to each other have a good battery backup and connection.As for the comfort basis its ok Rubber band is sterdy at neck wire is a bit graded so good quality but could be more better.... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Delightful,"After using 1 month. ๐Ÿ‘‡๐Ÿ‘‡Sound:- not so clear but not bad also, it is pretty good.Base:- so satisfied need little bit of improvement.Battery:- good๐ŸŒนOver all good product in this range๐Ÿ‘‰PLUS POINT:- HEIGHTS BASS IN THIS PRICE RANGEMUST BUY" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,"After using a month, reviewing The best wireless earbuds within this price guys1. Best at bass2. Very nice quality of sound3. I use it for 5-7 hours a day and one charge goes upto 7 days for sure4. Used it in gym as well - no tension about sweat as it's waterproof5. Apart from the black one, other colours could have been better6. Coz of being the best this has got highest rating on 5 start" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Awesome,Nice product smooth and slim .. quality is best like it +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,"The product is amazing. The sound quality is great, it is so light you won't even feel it's there, battery backup is huge. Lasts for 2 days easily. If less use than maybe a week. Easy to clean. They give extra earbuds. Bluetooth range is great. Sound clarity is great. Everything is great." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Worth every penny,"Design was good 5/5Bass also good 5/5Sound good 4.5/5Light weight,I think battery was also good" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Perfect product!,"PROS:Super awsome bulid quality. Material of neckband, wire, switches & earbuds feels really premium, comfy n top notch.The design too is ergonomic and sits perfectly in ears.Main highlight is the magnetic bluetooth on/off which is super fast and smooth. It gets connected by the time you plug in the ear piece.An led light is there for battery n charging indication The black and yellow combination looks damn cool and is great attention seeking.Ear supports are removable and does their j..." +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Very Good,Don't hesitate to buy that green color buds! Its fabulous.... believe meUsing it for 1 week and yes satisfied enough.... LED notification is there and the led is ๐Ÿ˜ +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Super!,It was a very good product and I like it . It is a very good choice for this price. +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Worth every penny,Lovely colour and premium looking and connectivity is awesome and impressive better than 3k-4k rs headphones Trust without and double thought go for it +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Mind-blowing purchase,"reviewing after using for one week. - great battery back-up charged it only 2 times on whole day usage- nice built and best part is it automatically starts when u insert your headphone in ur ears.,- nice bass" +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,5,Classy product,It is too good it has good battery backup and quality is mind blowing and sounds too good and is the worth product.... +ACCFHGZFS7GB9CVM,realme Buds Wireless Bluetooth Headset,4,Very Good,"Writing it after 27 days of usage. Its design really stands out, be it the metal body or unique colour combination. Built seems solid. Battery life is decent, around 12 hrs on vol around 40%. Charges from 0 to full within 2-2.5 hrs. Auto shut off feature is very useful,(auto resume after they are turned on would have been great). Fits well into the ears. Sounds quality is quite interesting, initially I was a bit disappointed as I usually use Sony MDR-XB450(they sound phenomenal) but comparing..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific purchase,"first of all with mi 18 watt charger,it got full charged in 20mins.that was amazing and 16-18hrs playtime is best at this price range.I searched for a wireless earphone and bought many but finally settled with this.sound quality is good but build quality is premium.overall i would say it is the best earphone to go with and I guarantee you will not regret.drop like if you find it useful." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Fabulous!,"I am using this product from 2 daysLet me share with you my experienceThis is my genuine and humble review 1st the delivery of flipkart is too good and then awesome packingThen comming to productThe experience of sound is really great we catch every instrumental sounds clearly and be joyful while listening and my rating is 4/5And then about bass, actually I expected too about bass boost but it not reached then that just good actually but I satisfied with that and my rating is 3/5Then ..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Worth every penny,LONG BUT WORTH READING.Honest review after one week. Just go for it. Dont get affected by negative reviews. Totally worth every penny and far ahead of its competition. The battery backup is splendid. Sound quality is very good nothing to complain here. Comfortable in the ears. Connectivity perfect. I haven't experienced any lag with normal media usage. I am a student and watch video lectures at sometimes 2x speed and never once I faced voice lag while changing video speed. Just go for it. Ju... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific,writing review after using it for two days ..first of all its having best battery backup among other wireless headphones.only drained 20% battery aftr usage of some 8hrs.. build quality is above the mark.. bass wise its lil low.. bt its ok .. go for it .. it wont disappoint you .. a great thumbs-up for flipkart delivery teams๐Ÿ‘๐Ÿป๐Ÿ‘๐Ÿป +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Simply awesome,The bass provided is a decent one and the sound clarity is pretty good.And all the other features are exceptional.U can surely go for this one for the price range..will not regeret. +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Simply awesome,"ONEPLUS THE BEST ๐ŸŒŸCrystal clear sound .Treble & Bass are well balanced.Bass is developed compared to OP Bullets 2 .Massive Battery Backup within 10-15minutes of charging.Built Quality is too good which gives premium feel .Magnetic On/Off will be very much useful .Finally , OnePlus gave us the best affordable wireless earphones ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ ๐ŸŒŸ" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Nice product,"Thanks to flipkart fot super fast delivery in our rural area.Got it within 3 days.Super earphones using it for online pg classes,comes with handy backup hrs.5/5 for sound quality4/5 for bass(not as high,for competitor like sony310,or realme wireless)5/5 for build qualityWill rewrite a review after a month use" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Highly recommended,"๐Ÿ˜‡No more tangles n dangling!! Loved it! Sweetest thing about this is, we can do our works FREELY or even go washroom with music on us..๐Ÿคฃ I would say, Go for it๐Ÿ‘‰ feel that energy!Well packed, class look And of course, the sound quality is GreAttt!!๐Ÿคฉ (I admit I'm a bit excited)And thanks to Flipkart for a quick n safe delivery ๐Ÿค—" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific,"Looking nice product...I got just 1day delivery..11th I ordered...12th I received...in this price range this product is no1..I got blue...i gift to dear one.. must buy.. don't go other products on this price range is this best....next level headset...no other gives this much battery life 20hrs...mind blowing OnePlus bullet z.. presently I'm using realme wireless buds, both are best in this segment but OnePlus is more battery life n extra multiple device connectivity button n latest design..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific,THIS ONE IS OUTSTANDING...few months before if some one ask me WITCH IS THE BEST VALUE FORE MONY WIRELESS EARPHON in the market I will definitely go for the SONY....JBL...or.....REALME But now it the oneplus BULLET WIRELESS Z I will give you my thoughts and features of this earphon from my 3 days of usage BUILD QUALITY : the build quality of this earphon was good..combination of good plastic materials and some fiber......if you enjoy music or whatever no problems that it w... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Pretty good,"By now u have seen 100's of review by now ... Everything u have read is true ... 5/5 in all but not in bass... If u havnt brought and u r a base head pls look for different headset but like me if u r stuck with this there is A FIX TO BASS.... SIMPLY CHANGE THE EAR TIP TO LARGER SIZE ... It improves the bass significantly at the cost of slight discomfort .... It works .. trust me Pls upvote this comment , So more people can improve the bass" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Highly recommended,"Product is superbbb... Really frds... Gaming sounds is also good .. pubg games sounds is clear... Compare two to another product .. it is really awesome. I really love it is a genuine review . I hope you are also like this product who is waiting for the games music ,video , call, it is the very very very good and also the billied quality is very good and also the battery charging is very good is take 10 minutes time but he charges in 10 minutes time and also the product will be used for 10..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Good quality product,Best budget Bluetooth earphones by one plus ....sound quality superb.....bass also good .... vry good built quality ....fix 15 hours play back ....very fast order delivery by flipkart ....over all good +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,3,Decent product,I have used this with a non OnePlus device so take that into consideration when reading this. Just want to mention that if you are not an audiophile you will never notice the difference between AAC and aptx. These earphones only support AAC and SBC.Cons:The bass is very much lacking. The treble at higher volumes sometimes (although rarely) starts tearing up. If you are interested in movies with a lot of explosions and bullets flying around it won't be a very immersive experience. Pros:S... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,1,No BASS at all!! Not for music,"I'm fan for Oneplus since their first product. I have bought the series of products along their launch. Very first product from oneplus which did not meet my expectations is 'oneplus bullets wireless-z bluetooth headset'. It has no BASS effect at all!!! if you are buying for listening music and music lover, better to avoid. However, call quality, voice clarity and battery backup are at its best. One of the best headset to consider for day to day usage." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Simply awesome,"It's definitely worth. But it's not a basshead earphones, I've seen some reviews saying it's got such an amount of base but in reality it's a balanced headphones adequate amount of bass nothing much more.This one plus sounds good when it comes to overall sound quality, it's all balanced Product quality is superb at this price range you can't complainMagnetic on/off is very helpful in saving battery life and convenient too, you don't have to switch it off and on, just detach it and it in..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Very Good,"Those who are looking for good voice quality in this price range , these OnePlus Bullets are the best you can find.โ€ข doesn't miss any single beat even at the lowest volume levels.โ€ขfast charging - 50% in 10 minutes & 100% within 25 minutes.โ€ขdeffinately has a long run time and yes you do get upto 20hours of play time for a full charge (depending on the volume level you choose to play)โ€ข very user friendly. one can listen for long time without any issue, for it u'll have to try the different..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,1,Hated it!,"I have been using this product from couple months. This headset will absolutely not work for calls. The reason is, the build of Wireless Z will not get mic near our mouth. However, it works if you have absolute patience to hold the mic in front of your mouth for hours you talk or be in meetings. This headset is only nice for listening songs compromising on Bass ! Only good thing I found is battery backup... You keep charge, go drink tea and come back. It will do for the whole day. ..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Good choice,"I love the build quality.... Love the battery life... Low latency mode is also working perfectly while playing PUBG ... Accessories are pretty good....But if I'm talking about the bass... Bass is not as good as compare to the realme buds wireless... Realme buds have powerful and heavy bass compare to this...Except this, everything is perfect...If you're ok with medium bass then you should go for it... you'll not regret for that...Also call quality is crystal clear... So don't think so muc..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Worth every penny,"This works great with OnePlus 6 where you have audio tune option , there you can customise to the appropriate bass,Out of the box it has medium bass but when you turn on AAC and audio tune it to your requirements it's sounds great and highly recommended of your phone has audio tune option you won't regret it. All those unboxing videos on the internet are all false it has sexy bass." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Awesome,Best in class !! I am using this with my iphone 7 (no connectivity issues)Sound quality is good with balanced bass n treble(Soft Bass) Overall A very good product in this price range! +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Pretty good,Everything think is good but bass is low But after updating my OnePlus device The wireless z earphone sounds better than priviousBecause it's got support Of Dolby Atmos soundsOver all best for OnePlus device s +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Simply awesome,"Best in this price range..( used others from sony,jbl,noise)Saw youtubers saying this has low bass...No.not at all..Sounds incredible on my asus 6z.little tuning in the audiowizard and these sound like expensive studio quality headphones.Pros:Great sound qualityTop notch build qualityThumping bass..low frequency bass response is goodGood battery backup with quick chargeCons:Low Latency mode only works with one plus phones Thanq #ONE PLUS for this fantastic product." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,1,Don't waste your money,"When I am starting for use..I am facing much more problems,,1 , on, off issue... not connect fast sometime sensor not working properly,,.. sound quality good but not excellent, .. And battery capacity is max 8 hour ..๐Ÿ™๐Ÿ™๐Ÿ™ i am not happy with us..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific,"Pros:1. Magnetic switch is fabulous. Switch over time is three seconds actually.. fantastic.2. Battery is unmatchable. 20, hours literally.. far ahead than its competitors.3. Neckband automatically switches off when not in use.. 4 Build quality is good with an attractive OnePlus engraving.5. Calling quality is excellent. No disturbance on the other side of call. 6. Good bluetooth range.Cons1. Should have provided with a case.2. To compete with Sony WI series, vibration was needed...." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Super!,Writing review after 3 days usage.... battery backup is really nice......am using redmi fast charger it's fully charged within 10min..... sound quality is really awesome..... decent bass....if you need heavy bass it's not your option....I really like this.... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Must buy!,Really great earphones.. very comfortable and very easy to use. If u love high bass then this are not for u other then that this are pretty good if u wanna buy them just do it. I totally recommend this +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Classy product,Excellent sound and great battery backup ๐Ÿ’“ awesome design...I am happy with ONE PLUS ๐Ÿ‘๐Ÿ‘๐Ÿ‘ +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Great product,"Best wireless earphones at 2k price range! Hands down, the best call quality, build quality (so light that you won't even realise it is there), great warranty, wonderful features and God, that battery and charging is magic. Also, the music experience is pretty good, yes, the base could be better, but nothing at all that you can notice. Don't think for a second, I did a lot of research before buying and it is worth it!" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Perfect product!,"I use it last 10 days & everyday use 7_8h ๐Ÿ˜‚๐Ÿ‘‡๐Ÿ‘‡๐Ÿ‘‡According to price...i give 10/10Every beat is clear, if you music lover, you feel it. 10/10Base 10/10Deep bass 10/9 (if you true bass lover otherwise it's very good for long time use in a day)Lyrics are very clear Battery 10/10 ( 18_19 battery)Design & build 10/10 comfortable, no pain if you use long timeGood for bike riding.Mic very Powerful it's catches whole sounds near u." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Pretty good,"1.Build quality could have been a bit better..2.Bass is gud though i don't know why people are complaining..3.Battery is life is phenomenal you will get tired of listening..3.Mic quality is great..4.Magnetic connection is strong compared to realme buds..5.looks are great and flexibility is there for protecting it from accidental stretches.6.moreover its splash resistant.7.I have been using realme buds since it's launch, Compared to realme buds bass is just 1 or 1.5 points low out of 5...." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific purchase,Excellent product by one plus .....and best earphone from all brands in this range .......sound quality is awesome.... ...bass is good .....not average......best things this earphone is battery backup .....I get 2 day batter.....approx 19 hour backup ...... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Worth every penny,"PROS : 1. Long lasting battery life (About 18 hours) 2. Full charge in 30 minutes. 3. Excellent balanced sound. 4. Quick Switching between my phone and laptop CONS : 1. Bass is moderate. 2. Magnetic control only pause the audio, but can't play while separating the buds in my Redmi NOTE 7 Pro." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Perfect product!,The bass is decent one audio clarity is just asowem .Im using this while running and i will suggest that to use right ear tips for perfect fitting .Battery is outstanding ๐Ÿ˜ +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Classy product,I heared in you tube review that bass is low.But trust me amazing bass amazing sound.The call quality is astoundingly great. +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Just wow!,Osm blutooth earphone by one plus ultra low latency mode works on my redmi k20pro it's good option for pubg lover and base is not so good but definitely base is present in these earphone according to price its good +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Super!,"Great product Very much useful for us. It has all the best... Like sound quality, battery back up, buid quality, fitting in the ๐Ÿ‘‚.. I recommend it for buy everyperson who's like wireless headphones..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Perfect product!,I sanitize this oneplus bullets wireless fully satisfied for this product very nice build quality and sound quality very very good battery backup at this price. I have using this headphone for my oneplus 7 Pro device its perfect pair lots of love for oneplus .. thanks Flipkart for delivery on this critical condition all over world +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Good quality product,Great product for the price compared to the other available in the market.Sound quality is good not great.The ear plugs magnets could have been more powerful.There should have been a flap sealing lid on the charging port.Fully satisfied with the battery backup.Go for it๐Ÿ‘ +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Simply awesome,The BEST under 2k. The magnetic control is awesome. Neck band is really comfortable. The bass is not that good. But the overall sound is very very balanced and enriched. I had an awesome experience with it. The battery life is great. Easily gave me 20 hours of backup. This is an overall value for money product. Go for it. +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Excellent,Every thing is great but battery backup is super great i liked it +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Worth every penny,"Sound clarity is perfect,design built quality also good,most important thing is battery backup it superbb๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ”ฅ๐Ÿ”ฅbut bass is not that much good overall product is awesome ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ˜๐Ÿ˜" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Best in the market!,"Superb quality ๐Ÿ‘Œ bass abd sound quality are also very fine... From my personal review, I like it low latency. Best for pubg and other games." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Mind-blowing purchase,"I dont know why some people are complaining about low bass , on the contrary they have quite adequate bass and when you pair them with devices having dolby audio , it just works like a charm.-Best build quality-Battery backup is one of the best in its segments -Sound quality is actually more than awesomeAnd its more than just value for money , in 2k their's no other good alternative .Got them at only at 1850 /-" +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Super!,Z is not for bassheads but for those who want crystal clear sound and no muddiness at all.Mid-tones: 10/10High-tones: 10/10Bass: 7/10 Perfect switching between devices and 20 hours battery backup.And breakneck fast charging Speed Bass is there but not thumpy bass so songs like BELIEVER may not sound good.But watching movies and stuff on this one is so terrific and enjoyable so 10/10 for that.For bass lovers oppo enco m31 would be a better choice cause it has 2 modes balanced mode and... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,4,Worth the money,One of the finest headset in this prize range .And battery life is one of the greatest thing makes this product worty to buy .and talking about sound quality So one plus the name is enough ๐Ÿ‘ +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Highly recommended,"This is a wonderful product Unless you have received a faulty unit. Let me help you here Pros -Best in class buildBest in class features (quick pairing and switching, super quick charge)Best in class battery lifeMost comfortable earphone (i have tried nearly all good earphones under 3000 both wired and wireless. Comfort of these are superb)Cons -Sound is like a typical 1000rs earphone.Bass is there but not that much.But still i am rating it 5* why because my friend No OTHER wirele..." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Just wow!,"This product is fabulous in this price range ..... In 2k I have 18hours playback. Earlier I thought that this product should give atleast 12 hours backup, but on other hand terrific battery life. If you are searching for wireless earphone then go for it. Just not because I'm saying, it just worth it." +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Worth every penny,1)Sound Quality Is Best.2)Bass superb but less than OnePlus bullet 2.3) Design and Build quality is best.4) Battery Back-up is very very Awesome. Standby time is 8-9 hour in 10 min charging..5) Full charge backup 19-20 hours really good and Best..6) Latency is Awesome i am tested this in Call of Duty..7) Noise cancellation is in Average mode ..8) Full charge in 25-30 min..In 10 min 50-60 % charge.9) connectivity is Awesome working in OnePlus...Other devices take time 5-10 se... +ACCFR3Q77R6RRGAC,OnePlus Bullets Wireless Z Bluetooth Headset,5,Terrific purchase,"Really good wireless headset. I came across a lot of reviews saying the bass is not so good. But I didn't feel so . It's really good.The sound quality is so balanced and it's perfect for movies , music and calls." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Highly recommended,Nice head set good fit nice quality good to handily poli aytem anu magnet pora kolllam migacha aytem +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Terrific purchase,The build quality is really good and the design also looks great. The magnets of earbuds are also really useful. The best part is the cable organizer which is really useful. The bass is good and the sound quality is also good you will not be disappointed buying this product at this price. The call quality is also good and the placement of buttons is very functional and useful. Buy without any doubt. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Classy product,"outstanding product best sound, good Bass, clear sound"" good job ""REALME ...๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Terrific,"woww fantastic experience ๐Ÿ˜ ๐Ÿ‘ and mainly discuss about this earphones is built quality is awesome ๐Ÿ‘Œ๐Ÿ‘im fully satisfied with this earphones ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘ prons 1. built quality is awesome2. sound quality is just super 3. bass , treble,mid ranges are just good4. long and comfortable cable cons 1. missed L shape jackfinally my overall rating is 9.6 /10" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Terrific,Unbelievable bass And very clear audio ear protection very strong I really prefer to purchase this fantastic realme buds thank you very much realme +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Excellent,nice earphones with smooth sound. even the build quality is best . this earphone is better for bass lover . and also for smooth playback +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Simply awesome,What a immersive experience on the headphones...when i listen music on them it feels like i'm sitting in any live show... best sound quality i've ever experienced on this price range. superb realme it wroth the price.. Its looks are also cool to see with yellow lines. The button of the remote are tactile and easy to use and differentiate. The sound goes to extreme volume no trouble after long hours of use. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Brilliant,"It's a interesting product so I'm writing this after 24 hours of burn out.. so stay tuned to know the full story.. eartips are silicone tips very comfortable but doesn't stay in my ear much well, but your mileage may vary.. build is great but after receiving my item I noticed scuffs and nylons coming off a little from the part near 3.5 mm port.. otherwise it's built really well.. speakers for calls is tremendous easily putting mi basics to shame.. it's great for people like me who talks a lot..." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Simply awesome,"Best in the market ๐Ÿ˜๐Ÿ˜๐Ÿ˜. Enjoying its feel the real bass ๐Ÿ˜Œ๐Ÿ˜Œ. Good qualities of wire, comfortable to wear, and great sound quality ๐Ÿฅฐ๐Ÿฅฐ . Value for money ๐Ÿค‘๐Ÿค‘." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Brilliant,"Nice product , nice quality , great buss, I love it" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,2,Bad quality,"seriously abnormal bass guys...which is a big. negative about this earpiece ... ..i dont know why nobody paid attention to this bass boost feature , which is annoying. ...you will never be able to listen to the originally recorded song ....but will hear abnormal extreme bass in every song you play ..which may not be pleasing ....and you want to turn off the feature ...but you can not coz it is a default feature in this earpiece...sound clarity is good ..build also good .......but i wil..." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,3,Fair,"Bass is awesome, a little extra, so people who like bass will love this, I personally like a balanced sound signature, so bass can be turned down just a notch, but treble is waaaayyy too high. It really ruins the experience, it hurts my ears. Mids are pretty good. Build quality is decent. Too much treble ruins the sound quality, that's why 3 stars. If treble was balanced then would have given it 4 or even 5 maybe." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Brilliant,"Realme rma155 vs boat 225 vs senhieser 180I have used all of them for 2 year boat , 6month senhiser , currently using realme since 2 week.Sound qualityRealme 9/10Boat 8/10Senhieser 10/10Volume Realme 10/10(11.2 mm drivers)BOat 9/10Senhieser 7/10BassRealme 9/10BoAt 10/10Senhiser 7/10Build quality Realme 9/10Boat 10/10Senhieser 5/10If you are only bass lover and don't care about lyrics then go for boat If you are only true music lover each and every notes matters for y..." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Great product,"Sound quality is really good... Better than boat bass 200,225.. i have used many earphones like JBL , Skullcandy,boat,bout,leaf,bose,sony etc.. but i fell this is also good as leaf bolt ... I love it๐Ÿ˜.." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,1,Unsatisfactory,sound is good i mean it have very loud sound. but speaking about bass im not too happy with it because bass is soo powerful but not soo clear as jbl have +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Classy product,"It's a allrounder. I used this for playing pubg , footsteps is clearly audible, music is awesome . I suggest you to purchase this earphone if your budget is under 600. I am happy with the product." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Awesome,Using since May 6th. And it is exceptional. Especially for pubg it's wonderful you can hear the footsteps form where they are coming. There were no problem listing music for long hours. Active noise cancellation is superb you did not hear anything around you when you plug and play. I previously used Mi basic after 1 year one side went not working. This one has better bass and sound clarity than Mi basic headset. Go for it guys +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Mind-blowing purchase,"sound quality+bass is quiet good , tangled free , and the design is great too , i give it a full 5 starsโ˜…โ˜…โ˜…โ˜…โ˜…" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Mind-blowing purchase,It's a great product according to the price and its sound quality and bass is perfect.Realme Buds 2 really its a great headphone.In this price range best headphone ever.โค๏ธ +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,1,Worthless,"After using 3 months, having mike issues. When you are playing songs it's good but when you are on call it's not a worthy enough" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Awesome,"The Real Buds 2 (Feel The Real Bass)Design & Fit 5 - โญโญโญโญโญSound Clarity & Bass 5 - โญโญโญ โญโญValue For Money 5 - โญโญโญโญโญI Am Using For My OnePlus 6T ,I Got Best Budget Earphone From Realme ๐Ÿ™๐Ÿ™& Thanks To Flipkart Team For Within 2day FastDelivery ...Just Add To Cart & Buy This , Don't Wait........." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Wonderful,Sound very good Punchy bassClear soundBut look is not so good especially in green color itโ€™s looks so simple I mean quality Overall great purchase +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Mind-blowing purchase,"absolutely great product sound quality bass is great I did not expect that ,built quality is also great go & purchase guys but some cons are also there connector is not L shape treble will be improved in next version over all osm product bass lovers go for this earphones" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Brilliant,Best product to buy ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸ๐ŸŒŸIt is good in realme Narzo 10A good base and high quality worth in price ๐Ÿฅฐ๐Ÿฅฐ +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Good quality product,every thing is great in this earphone just lacks clarity a bit and i guess its because of bass. cable: braidedlooks cool with black yellow combinationi like the magnetic earbuds +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Worth every penny,"Comparison Between Boat 225 , Realme Buds 2, Sennheiser CX 180Bass:-#1 Realme Buds 2 (Excellent Extra Bass)#2 Boat 225 ( It has also a good extra bass but not good as Realme Buds 2)#3 Sennheiser CX 180( it has no extra bass but the bass is just perfect when it required u feels a great bass)Build:-#1 Boat 225 ( boat is clearly winner on its build quality it feels more premiums than other two with its metal build and tangle free wire)#2 Realme Buds 2 ( It has also have a great build..." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Awesome,"Writing review after 6 months of daily use..Personally i use earphones on daily basis. When i upgraded to these earphones, their design and build quality impressed me. In the first month it became too wet due to rain but still these works the same way as they were on first day.Good product." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Pretty good,The best value for money product and also the build quality is good and lite wait and I also like that yellow strip it's very useful +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Great product,"I don't know much about the technicality of the earphones but the sound output from these earphones is pretty good for its price , sound coming from them is crystal clear ,these are undoubtedly the best earphones in this price range." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Super!,bass Is awesome And Clarity Is also Descent Bulit Quality Is really good Very Durable Cable Quality really Liked The Products Let's See How Long does It Last for? +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Worth every penny,"I literally love this product this sound quality is good i use more earphones like boat ,jbl,ubon etc but this earbuds are best I literally love this mic quality for recording." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Good quality product,"Real me Buds 2 is awesome product, Great sound quality but bass is not up-to the mark. Awesome build quality. Value for money ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Simply awesome,Pros: 1.Sound is crisp and Clear 2.Bass is Awsome 3.Design and build quality excellent4.Cable organizer is usefull to carry pick up your earphone safetly5.Call quality is clearly delivered to whos speak with uscons:1. its a straight cable not triangle2.Not Gold plated 3.5mm Jack +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Classy product,Ordered 2 for my sis and my self. Good built quality. Bass Triple are well balanced. Producing wow sound effects with Power amp music player app. Comfortable fit. thanks for extra ear bud. Well and premium packing. On time delivery. Another gadget in my laptop. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Best in the market!,I am happy good quality product. Nice bass and sound clarity +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Excellent,Realme Buds2 is really gud product with comfort and quality. Satisfied with it. But only issue is small ear plugs are only one pair available in the box which are perfect fit in the ear where extra other plugs are big and not useful. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Terrific purchase,It is the best in ear earphone in its price.nice built and noise isolation is good. You can feel every beats of bass.HD crystal clear sound. But the voice clarity could had been improved with the dual drivers. But still the best earphone in this budget. The build quality is also good and it doesn't feel cheap budget earphone.One more thing.... The cable organizer helps a lot while keeping the earphone safe and organized while travelling and keeping in jeans pocket.Hope realme buds 3 will co... +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,3,Nice,Boat basshead 220 have better bass than buds2. But vocal of buds2 is better than boat 220... It produces very clear sound ๐Ÿ”Š loved ๐Ÿ˜ by music lover... Must buy but warranty must 1 year ๐Ÿ˜” +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Worth every penny,"I bought its because of their build quality, the sound quality is moderate. But they produce too much bass and lite and comfortable as you wear nothing. They are lite and well fitted in my ears with default buds.To conclude this might be the best pair of earphones you can get under Rs. 600. If your priorities are that the wire lasts long as it's don't get twitch easily. Don't think too much, just buy it. You will not regret it.v." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Worth every penny,Sound quality is amazing and build quantity is also amazing my brother is also using this ear buds 1 for long time and its performance is still very good so I also ordered ear buds 2 and both are amazing and working up to expectations. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Classy product,The Sound quality is superb and the base quality is also good ..The point thing which I liked in this earphone is that its durability ..the wire quality is good ..before I was using the sennheiser cx275 ..the wire got cut from middle ..I am happy with this earphones. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Simply awesome,NICE PRODUCT... WORTH BUYING.....!!!!Its a Signature sound by Realme India..I love the sound... Best in Segment.@REALME INDIA. +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Mind-blowing purchase,"First of the design is so nice, the texture of the colour is amazing.. Now came to sound quality..I didn't expect it will be this good!! The bass is perfect for ears .. I really feel enjoyed whenever i listen any songs through this headset.. really satisfied for this product... recommend everyone to buy it and enjoy..Thank you." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Best in the market!,"I am using this headphones from last 6 month , sound quality superb , bass is less in comparison of my brother's boat basshead 225 , but bass is good , built quality very good , magnit is a pros , valuable price , wire quality osm , and this is one of the best headphones that I uses . 2nd is boat 225 โ˜บ๏ธโ˜บ๏ธ must buy" +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Delightful,Good bass over all nice i get Rs599 MRP price is 699 if you are getting under 500 then best +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Best in the market!,"This is the best for daily use. It feels like nothing when in the ear and it's easy to keep organised, thanks to the magnets and organizer. It also has two extra buds one small and large which you can use according to your preference. It also has a tangle free wire. And Flipkart packing and delivery is always the best. No doubt about that." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,4,Good quality product,Sound quality is acceptable with price range.bass quality is super . Design and build quality is good but personally i Don't like tha wair .all thing is good is this price segment but i have some issue with this mic and the bottoms . +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,3,Nice,"The sound and bass are really good. Bass is really powerful. After 2 weeks of use the pin end is somewhat broken from the inside. Seems wont last for more than 1-2 months at most. But all the other parts looks better built. I have very rough use and i keep my headset in a pouch. Not worth 600, flipkart smartbuy headphones are better but not much rich in sound like this one." +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Brilliant,Best earphone under this price range i have bought sony buds which was available Rs100 more than this price but its sound was low in compare to realme buds2 best earphone under this price range with boosted bass bass is best +ACCFKYE2ARGG67WC,realme Buds 2 Wired Headset,5,Just wow!,"It's sound is osum and bass too , earphone material also very good and trust me guys I am writing this review after 7 month and it is perfect for you so buy this earphone" +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Highly recommended,Good battery ๐Ÿ”‹ ๐Ÿ‘Œ Sound awesome ๐Ÿ‘Œ Bass ๐Ÿ”Š super Overall good ๐Ÿ‘ product in one plus +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Super!,Very nice product with amazing battery back up and deep bass.. Awsome sound clarity.it is very flexible Length of wire is little low. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Really Nice,This review i was posted after 1 week using this 1+ bass editions neckband. It's sound quality is awesome bass effect also awesom then call audio quality also super when i receive this project it was 100% changed i was used more then 4 days in this neckband using audio and video player per day i am used 3 hrs approximately after 4 days i god 40% of remaining charger. i changed this neckband with in 10 minutes its fully charged. its worth for money. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Brilliant,"I've been using this product for the last 3 days. This might be too early to write an elaborate review but I've known enough about this neckband to be ""eligible"".1. Sound Quality: The drivers definitely produce a very balanced sound that is surely going to satisfy most of the people including me. Whether it's about mid frequencies, vocals or the high frequency trebles, or even the lower frequencies, this neckband deals all of those with superior performance. Undoubtedly.2. Bass: Bass is..." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Awesome,"Excellent quality.. Packing is awesome.. Neckband quality is impressive its very Soft rubber, light weight.. Sound quality is very nice.. And bass is impressive.. Backup is approx 14 to 15 hours easily in medium volume.. Very fast Bluetooth connectivity and switching.. Type c charging cable.. I think it is best in this Price range." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Must buy!,This review i was posted after 1 week using this 1+ bass editions neckband. It's sound quality is awesome bass effect also awesome then call audio quality also super when i receive this project it was 100% changed i was used more then 4 days in this neckband using audio and video player per day i am used 3 hrs approximately after 4 days i got 40% of remaining charger. i changed this neckband with in 10 minutes its fully charged. its worth for money. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Best in the market!,Quality is very goodAndSound and bass is also very good But battery is not good Battery backup is not 17hours Battery backup only 10 hours on full volumeAnd this earphone is very good on all condition But battery is not on markAnd 10 to 12 it charge 70 to 80 and playback time upto 8 hoursAnd it completely charge in 20 to 30 minutes But no warning for low batteryI check two time i can not seen low battery warningOverall great product in this price +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Value-for-money,"1. Call quality is Good. I have tested the call infront of high volume TV. The call was pretty good and didn't hear much noise if TV music. 4.5/52. Music is good. Bass is not as expected. But if you adjust the Equalizer, the Music is good. 4/5.3. Comfort is Pretty good. 5/5.4. Battery is also really good. 5/5." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,1,Terrible product,If you are bass lover don't dare to buy this. Bass is really very bad. I have used Sony earphones and they offer pretty good bass than it. I bought this due to hype but in actuality it's not even close to my expectations. Whenever i listen to music it makes me ๐Ÿคฌ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Fabulous!,It was a fantastic experience using this earpiece its just awesome and i loved it like anything it has all the features qnd a definitely good base with good sound quality..i was bit unhappy with its clarity else i was really impressed by its working +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Good choice,"The sound quality is really good and it's worth every penny. But the unit I received had some manufacturing defect so after around 3 months of use, the volume in the left side kept decreasing for a week and then completely stopped. Thanks to the one year warranty I took it to the service centre for replacement. And they said I'll get the new one in 7 to 10 days! That's a long time for a music lover to stay without earphones... I also checked the OnePlus website and there were a lot of people ..." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Wonderful,The quality of the headphone is awesome. Easy to connect to any mobile and PC. Sound quality and bass are satisfactory and worth every penny. Go for it! +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Really Nice,Bought these headphones 3 weeks backPros:1. excellent build quality2. Great bass and sound3. light weight and handy4. gives me 10hrs of battery back up5. really good quick chargeCons:1. Missing quick switch button +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Super!,Simply outstandingReview after 5days of heavy usageFirst thing to look after when we have earphones like these is battery and it these r fentastic charge for 10mits and it serves you a whole day and even more too.The second best thing is the bass and sound quality and it is simply the best.The next thing is design and pricing. These Bullets reached these specifications too..Overal rating is 10/10 perfect. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,3,Just okay,Product is good but as the name says baas edition it has not such a good bass but its decent sound quality is good but bass is not so satisfying +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Must buy!,Sound clarity is too good in comparison of realme wireless and also bass is far better from realme wireless.bass is reaching in the core. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Must buy!,"Too good... At last 1+ improved in sound dept. You can feel each and every single note and the most good thing is you can hear tempo in one bud and others in the 2nd bud. I mean, the surround sound sistem is too good" +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Must buy!,"I am happy with the product I received. Packed tightly and got genuine product.This is after 10days review.I charged for 3time only- battery backup really niceNo irritation at all while placingThere is no noise cancellation i think but voice will be clear for receiving personSounds are really amazing I will re edit again after 20daysDesign, build quality is nice and I don't feel wires will sustain for long periods use.No irritation even after placing it for 10hrs.Nice one... Good ..." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Worth every penny,Compared to OnePlus bullets z this has far better bass and also built quality is good. The sound quality is also good....not as good as LDAC sound system but it is decent overall. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Pretty good,No doubt this neckband was a beast but reason for giving 4 star is sometimes when I use microphone during games it doesn't work properly my teammates didn't hear me properly BTW it's good choice for me only I face sometimes microphone issue. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,1,Hated it!,This earphone is good only for music and gaming. The sound quality over call is very poor. The sound is very low for phone calls. Not recommended to purchase if using for good phone call experience +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Very Good,"Very good product. Sound clarity is fine but due to extra bass some instruments and vocals are faded sometimes! Design and build is good too except there is no cover for the type-c port! Battery backup is too good...no issues there. And comfortable too, itchiness or something like that doesn't happen after using for long hours. Microphone is good, no issues from the other side. And low latency mode best in this price range...even with a non-Oneplus device( I've a Samsung phone ). Overall valu..." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Good choice,"Super delivery within one day. Thaks for the filpkart delivery. Best value for price. Durable product. If u looking for a standard bluetooth headset, then go for it" +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,3,Just okay,One thing I tell you that it has high bass. Bass lover will love it. But non bass Love it is headache. But sound quality and build quality is outstanding. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,3,Nice,"Good connectivity, battery backup and build quality. Sound quality is so average, definitely not as good as my boat rockers 255. Useful for office work, attending calls or listening to lectures. A big no for listening to music." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Simply awesome,Awesome looking and stylish all my friends are asking me for testing this product and some of them are buying. that's batter and I like that thing. Also the phone has low latency mode that's also help me in game overall good performance. Must buy ๐Ÿค— +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Super!,Good sound effectBattery backup is super and bass is excellent worth of rate in this productAwesome ๐Ÿ‘ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Terrific purchase,"Very good product and good quality, sound quality is very impressive bass and stereo equal tuneing, totally amazing product Flipkart delivery is very decent and very waiting for this product just 15 hours only" +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Terrific,Very good ๐Ÿ‘ sound ๐ŸŽค quality nice bass and treble all over excellent l.battery backup is also nice ๐Ÿ‘๐Ÿ‘๐Ÿ‘thanks to Flipkart for delivery next to the day I ordered ๐Ÿ“‘ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,3,Just okay,Good bluetooth earphones but price was high for middle class music lovers .bass was good for listinining.mic was not clear in running or at bike.battery back up was nice.earphone 100% not fit into ur ears exactly . totally my opinion sound quality and battery backup good .price comparison was too High . +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Good quality product,Fantastic system it has but not have bass. Sound quality is average. I would like to inform you that do not waste your money by seeing ONEPLUS tag. You can buy better Wireless Earphone at very cheap price of Boat. Sound quality good but no to appreciate! +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Super!,"Now from my experience, I searched for a lot of earphones and saw each and every one... What I found was this bass edition is better than most other wireless earphones though some reviews said that build quality is not good.. what I feel is.. sound quality, bass ... Very good! Very happy about it.. Connectivity is top notch... Easy to wear... No any ear pain during long hours of usage.. But battery back up... Its been 5 days now.. I have charged it only 2 twice.. 10 mins full 100%... Wow! One..." +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Best in the market!,Battery backup is good. Charging speed also very fast. Not best but good sound quality. Worth for price. I am enjoying the product +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Just wow!,Nice +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Nice product,I'm loving this bluetooth โ˜บ๏ธ๐Ÿ˜ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Worth the money,"Good battery back up, sound should be improved" +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Brilliant,Best sound & bass quality +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Terrific purchase,Useful products +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Good quality product,Good not bad +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Super!,Amazing productSound quality super se upper ๐Ÿ’“Battery backup A1 +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Excellent,OsM Baas .....I Have Been Using for 30 Days.....I always sleep around the night in my neck....No Defect No Damage.....Battery Backup 2 Days.....Charged in 15-20 mins....Magnetic Buds.....Charging Light (Red)After Charged Light (White)Premium Quality.....Noise Cancellation.... +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Fabulous!,I loved it.. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Just wow!,Extraordinary just go for it. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Mind-blowing purchase,1.sound & bassโค๏ธโค๏ธโค๏ธโค๏ธ2.Product๐Ÿ˜Š๐Ÿ˜Š๐Ÿ˜Š๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,4,Worth the money,Super sound quality +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Awesome,Best earphone +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Must buy!,Super super head phones.the sound quality is absolutely amazing.and battery life is good. +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Great product,I've choose red color it's amazing...๐Ÿฅฐ +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,5,Just wow!,nice +ACCFVA3KZ2EYMYX3,OnePlus Bullets Wireless Z Bass Edition Bluetooth Headset,3,Fair,"I bought this blootooth 1+one last Dec 2020 . Sound quality is good, Battery backups is very nice. But I have facing connectivity issue. It will be take 1 minutes . Overall product ok. But I'm not satisfied with connectivity." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Value-for-money,"Amazing Product, bass is amazing and easy to carry , Also you like the insulation of product , battery backup is very good. Satisfied With Product" +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Perfect product!,Worth it If you think to buy a tws then it is a best option light weight easy to carry I'm Happy From This. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Just okay,Good and well but still some batter time improved it will be good and I have a small fear that these buds or not fitting properly some times and may fall down that is a draw back. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Good choice,"Genuine review (after 1 week of use), I was quiet confused whether to buy these earbuds or oppo enco w11 or boat airdopes 441. Atlast I bought realme buds q in 1565/-Pros - Sound very goodBass very goodInstant connectivity to Bluetooth.Battery backup goodLight weightPremium lookLink appWater and sweat proofGaming modeCons -Not having a good responsive touch. It makes delay responses.Call quality average, not bad but not that good in outdoors.Not having that good connectivity r..." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Not recommended at all,"As they rightly say about Chinese Products: Chala Toh Chand Tak; Nahi Toh Raat Tak.Review after a month of using this product:Sound Quality Is good, above average I would call it.Easy to pair and connect.Like the fit, fits perfect in your ears.Issues: 1. If you are watching a video, after a while, you would notice that the video is not in sync with the sound. Theres a constant disconnect which cause the video to relay first and then u hear the audio.2. The right earbud has stopped wo..." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Fabulous!,Awesome product in such a low price...didn't expected..I never loved any earphone than samsung in ear headphones even akg headphones couldn't beat that and this realme bud is exactly like samsung in ear...loved it must buy +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Good quality product,"First of all, size of the product is very small and handy, it can easily fit in your pocket. Battery backup is good as of now.Call quality is average, not expecting more...Sound quality is good for bass lovers, but not crispy. I'm using sony Headset (wired) while compared it's average.Usb type c is missing but not a issue.Interfaces - touch controls are average. Overall your budget is 1500 to 2000 consider to buy." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Just okay,"I am writing this review after using this product for more than 4 months now. ~Sound quality ( bass ) is good but not great. If you are a bass lover buy local earphones, they provide more bass than this product. Overall, sound quality is good.~Voice calls via Bluetooth is not at all impressive. If you are at a quiet place you can expect these to work just fine but if you are at public place don't even try to talk via these ear buds.~ Design is great. I love the design, fits well in ears an..." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Classy product,Bass is not that much good . But the quality of vocals and loudness is absolutely fabulous .Although i face some connectivity problems with the left bud sometimes but overall a good purchase .pretty much much happy with my decision +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Classy product,"LOVE IT ๐Ÿ‘Œ๐ŸปAwesome Sound Quality with Superb Bass and noise cancellation, So light weight and perfect fit in ear. Love these Buds specially if you compare this with any other brand in this price thanks to realme For this great deal." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Very Good,Best In this Range....... Blindly Go for it I'm writing this review after using for 30 Days*Microphone is working smoothly*Battery Backup is more than mentioned*Connecting time is 2 sec max *Fitting in ear is perfect (Customise with 3 Extra Sets of Buds)*Easy to carry*Sound is best in the range but it can be improved*Bass also need improvement +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Really Nice,This buds gives such a good quality experience of listening. Fine bass and good build quality. Bt battery backup stands extremely good . I have purchased this Bud's 10 days ago since then I got fine performance from this buds.I must say worth of every Penny I spent on it. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Mind-blowing purchase,If u want earbuds for gaming like pubgm and cod and listening to music go for it If u want for call purpose go for some other cause u have to speak very very loud so that the other person could hear my voice but all the rest things are perfect specially battery backup is so good I almost get atleast 7 hours at 70% volume when gaming from when i take the buds out of the charging caseThe design is good.There is no led in buds but only one in charging case to show that the case is charging o... +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Super!,Good proudct excellent ear buds nice sound good battery backup nice design and very light weight.Thanks realme........Fabulous product by realme๐Ÿ™๐Ÿ™๐Ÿ‘๐Ÿ‘๐Ÿ‘Œ๐Ÿ‘Œ๐Ÿซ๐Ÿซ +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Just okay,The product is best and sound quality also best and beti so nice range also nice disadvantages after 7 days the right earbud will not work it will work but charging will not support you should clean the box and you should keep the charging and it works you don't think that the right earbud is not working to be working but it won't get charged through you should clean one time and you will do charge means you will get charged Atlas I control my speech by saying that the real world so nice name... +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Great product,"Best noise cancelling buds for this priceEven though it has no noise cancelling!It's pretty good and bass is awesome and sound quality is also good, I can literally hear the lyrics even I'm standing in the crowd and it fits perfect that you won't hear outside noise at all." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Great product,Bought them in 1499 20 days ago...battery is 2 hrs for songs 1.5 hrs for call for a single bud. But the box can fully charge them in 30 minutes so no problem ..mic connectivity during call is also very good seems like hd calling but for a better experience you may require a calm place. Overall with brand support like real me one can buy blindfull +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Wonderful,Awsm +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Worth every penny,Amazing ๐Ÿ‘ +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Just wow!,Super Vera level iruku buds +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Great product,Very handy and also very useful product ๐Ÿ˜Ši like it โค๏ธ +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Utterly Disappointed,"After 2 months they are not connecting, right bud is not working since 1st week now left one also stopped connectingNote - replacement taken within a week as right side bud stopped working same happened in new also, now this review is for replaced oneDon't buy" +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Just wow!,Very nice product +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Not recommended at all,"One bud stopped working just after 10 days, now flipkart is not returning or exchanging the product, do not buy this product" +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Does the job,"Writing this review after one and half months of purchasing. Pros:-1) Battery backup is good, not great but you can't expect more from this2) Sound is good. If you're an audiophile don't go for it, though sounds good but it would disappoint you.2) Bass is good. Cons:-1) You would hate it for its turbulences. Right pair of the bluetooth headset got corrupted in just 45 days of light using and doesn't gets connected. After talking to the customer representative, they fu*king suggested m..." +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Just wow!,Goof product from realme.I am quite impressed from these +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Worthless,In one hour calling battery reduces from 100% to 10%Never ever buy this product +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Worst experience ever!,"Within the return period it will work perfectly but after that too many problems you will face so don't buy this earbuds i have brought this on 12 jan and on 22 jan it's showing its true colours....I'm having connection issues, charging issue and more yet to come . Opening the box is very complicated" +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Best in the market!,Good +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Worth every penny,Best Quality buds +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Does the job,Sound and build is pretty good but touch control not working properly. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Not recommended at all,Don't buy this ! Doesn't catch our voice while driving ! Waste of money and also no return policy +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Super!,All are good but Noice cancelation on call not good . +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Just wow!,Sound Quality 10/10Design 10/10Light Weight 10/10Battery Backup 10/10Build Quality 7/10Latency 9/10 +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Fabulous!,Osm product +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Worth the money,Good product. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,3,Good,Pocket friendly worth buying sound quality is awesone bass is also good battery backup is also quite good.10/09 +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Good quality product,Good prodect nice โฃ๏ธ +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Best in the market!,Mind blowing purchaseIt's bass is very good & battery backup is super then only one disappointed in this that's when using to talk it didn't respond correctly and it's automatically it off +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Must buy!,Battery is superb Sound quality awesomeBuild quality is goodBut value for money I love it +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Mind-blowing purchase,Awesome sound and bass. Love this product. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Worst experience ever!,Flipkart provide me a damage product. Return rejected. Don't buy this. +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Terrific,Bass is very goodOverall nice product at this range I got it @1599 +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Don't waste your money,First few days it works well...then after ...the case and earpods didnt charge ... +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Worth every penny,good sound quality๐Ÿคฉ +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Highly recommended,Best product +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Super!,Mindblowing productGood sound qualityBattery backup to goodBut calling issuesI am parches 1564/-rs +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,5,Great product,Unbelievable sound quality!!! Nothing is as good as this Realme Buds Q. Awesome Product!!!! +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,1,Useless product,Sound and battery life is good but touch response is very poor and not working properly +ACCFVWN4PGNTEFGY,realme Buds Q Bluetooth Headset,4,Pretty good,Good +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Perfect product!,I am very happy with this product. The U&I Titanic series sports neckband is just awesome. The sound and bass is too good. It has also very good battery life and I haven't charged it since 3 days and more to go. It is comfortable to wear and has perfect sound quality. I had an excellent experience of this neckband. It is also economical. A must buy for all. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Best Bluetooth headphones for the price,"I literally use my bluetooth headsets all day long, for almost every purpose. I run and skate several times weekly, and use my headset for business calls etc. ///I've had many ""around the neck"" bluetooth headsets, this by far seems to be the best!Super easy instructions, at initial power on, it goes automatically into pairing mode. The answer/accept/decline is GREAT!Definately worth the money. (And I almost never say that!!!)///Positive:- The sound quality and product product quality..." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Excellent,Great experience... awesome sounds quality.. noise reduction .very much comfortable in ears .. awesome build quality .stylish look that makes it different from other brand . happy...Good packing on this price range... +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Wonderful,This product is really good. The quality is good must buy at this price. The sound & bass is nice. Battery life lasts for a day easily. The connectivity is also great. The clarity and sound is superb. Itโ€™s very handy and not heavy. Itโ€™s easy to carry. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Fabulous!,"This is amazing product, sound quality awesome, mic very solid and the very important thing is battery backup i am shocked this is giving 19 hours backup with playing songs calling and all. I m giving five star to this product this is also low price and product is too good. Thanks flipkart love you always" +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Super!,"This is Bluetooth earphone is of very good quality and make. This looks very much durable and long-lasting. Battery backup is good enough to listen to day-long music. And feels comfortable in the ears and looks unique. Bluetooth coverage is good enough to walk around the house and keep the phone somewhere else. Also the clarity and sound quality are good too. This looks like premium made and quality. And it's for a great value, Recommended to buy." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Fabulous!,Quality is Good .. Build Desine is Nice and Sound quality is Ossoum At this price.. But Charging cable is too Short i am not Happy .. But all over Headphone is Good i like it ...Battery Backup is Very good qualityThank you.. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Just wow!,U&i Titanic quality is awesome and looks are pretty sober the sound quality is also good bass lovers will love it I had a minor audio very clear and awesome voice quality long hour battery back up 8 hours very awesome neck band +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Highly recommended,Easy to hold and carry . Sound is best . Bass and treble is clear and feels like expensive brand one. Battery backup is good appropriately 6 hours .. price is reasonable. Best buy.๐Ÿ‘๐Ÿ‘ +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Really Nice,It's a stunning and fabulous product..๐Ÿ˜ Sound quality is good... I think wire is quite thinner... ๐Ÿ”‹ battery backup is amazing as described.... Best item for the price segment.just go for it.... ๐Ÿ‘ˆ +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,3,Just okay,"What a delivery......... I'm very happy with the delivery...... I got the product in just two days....... The product is good but there is a delay for the sound it's ok but can't play pubg comfortably that's the only thing which I'm not satisfied with this product,....." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Best in the market!,Using it from past one week and this product has worked above my expectations. Sound quality is very good and battery backup is pretty awesome. Bass is very defined. Overall the product is a must buy at such a cost. Must go for this. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Terrific purchase,This is one of the most favourite bluetooth earphone for me i used regular 2 days and its baatery backup is fanatastics and its balck clour is looks lovely for my neck anf gets it at affordable price and also charge in 1 hour full charge once agin i like so much this earphone +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Pretty good,The product quality was pretty good. But i don't like that gold color. But in the price point the neckband was awesome.๐Ÿ‘ +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Simply awesome,This product is good for daily use. The sound quality is much better that I was expected. Overall neckband is worth of money. So you can buy it for daily use +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Mind-blowing purchase,This is very useful product and quality high rated and playback time 10hr base to best the other company neckband clear voice and clear output responce. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,3,Nice,The product is good but charger is small But I Loved It A Lot All family blamed me for such a order But i loved it a lot Thank U Flipkart +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Just wow!,๐Ÿ’–๐Ÿ’–Sound is osm & bass is very good & build is super & the most important thing its battery ๐Ÿ”‹ backup is more than 8+ hrs so this is very osm superb & awesome bluetooth headset i like it very much๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅSound-4.8/5Build quality-4.7/5Battery-5/5Value for money-5/5 +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Terrific purchase,Nice bass. Nice sound. Nice clarity. You will not find anything better in this range. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Brilliant,"Very very good product awesome bass sound quality is genuine as well as battery backup is too good.and one of the best thing in this it's look,golden boarders make it too much good looking really loved it." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Excellent,Nice & I love this product sounds quality is superb and nice design +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Worth the money,"Pros-1. Good enough BASS.2. Battery backup is good, can last 1-2 days with moderate uses.3. Can pair 2 Phone simultaneously.4. Nice disign and buttons placement.Cons-1. When you switch it on it says Welcome....... In full volume.2. While incoming call it reads callers mob No. that too in full volume, thats irritating." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Wonderful,Very good quality bluetooth neckband. The battery backup is amazing and it has good sound and bass qaulity. It is a worth buying product. It holds value for money. Very much satisfied. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Just wow!,Best quality earphone ever I used excellent sound quality superb battery backup looking Also Good fully worth +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Mind-blowing purchase,Sound quality is really good. Amazing looks very cool neckband. Bass is super good. I'm really very very happy with this earphones wanted this type of earphones from so long now i got it.. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Great product,"Quality is Very good must buy at this price segment , sound & bass is very nice ,battery back up is around 7 to 8 hours easily, easy to use, build quality is quite impressive over all I just love it โคโคโค" +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Excellent,"It's such a great product๐Ÿ˜๐Ÿ˜, writing this review almost after 40 days. Very good sound๐ŸŽง๐ŸŽง, with huge bass.Product quality is likely ok. Battery๐Ÿ”‹ backup is insane. Range of connectivity is also good enough. Good device๐Ÿ˜‰๐Ÿ˜‰ Thanks โคโคflipkart." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Wonderful,Awesome quality this headfone and sound quality is very nice best disgn and thank flipkart +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Wonderful,Very good product..sound clearly is very good ..battery is long lasting... Full day battery works while talking and watching movies .. Worth it +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Great product,"Bass, super sound, very nice best quality, like this hair phone โคโคโค And Buy Now" +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Simply awesome,Very very good product value for money Bass good volume good Best battery +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Awesome,"Nice product with good quality sound, bass, most important it is Indian Product, Bass-5/5Sound-5/5Quality-5/5Really awesome product good investment on good product." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Terrific purchase,Wonderful ProductAwesome product.This is really very good neckband.Awesome sound quality.Battery life long lasting.Mic is very solid.Battery back up is very good.Bass is also superb.Overall the product is must buy at very affordable price.Highly recommended.Just go for it. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Just wow!,Good u&i titatnic series bluetooth neckband. It has good sound quality and good bass. Battery backup is very good. Awesome design and built quality. Good in this price range. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Wonderful,Best connectivity easy nice battery good colour just switch by clicking the end button and connect then enjoy its sooo FabulousJust charge for 30-40mins enjoy for 10hrs +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Terrific,"Excellent quality sound in my budget, build quality is amazing and has a perfect length wire and fits well into ears, light weight and loud sound, battery lasts a day with music and calls" +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Delightful,"Super quality super sound bass good super battery backup, super super super" +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Brilliant,This neckband earphone is very good in quality. Easy to use. Very comfortable and design is good. Sound quality is excellent and bass is also nice. Elegant design. According to price product is super. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Best in the market!,"This U&I neckband is awesome I mean seriously I got the best earphones till now. Sound is so good bass music. Easily get connected with phone, very light weighted. Very comfortable." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Worth every penny,Nice product ...โค๏ธโค๏ธ Nice sound.โค๏ธ๐Ÿ’ฐNice bass quality.โค๏ธโค๏ธ. And good battery backup.โค๏ธโค๏ธ This had phone value for money..And .... good parking ...i am so happy ... And thanks for flipkart...โค๏ธโค๏ธโค๏ธโค๏ธ +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Classy product,Nice Products +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Perfect product!,Best in this price Bass 4.5*Sound 4.5*Battery backup 4.9*Design 4.2* +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Delightful,Super product very nice +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Very Good,very nice +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Value-for-money,Quality is good as er price +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,4,Very Good,Great product low price best quality ๐Ÿ‘ +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,2,Could be way better,"After 1day of use I am writing this reviewBuild quality 3/5 (the wires to the speakers are very thin. Not durable)Sound 5/5 (it's very loud)Bass 4/5 ( It's just okay type) Backup 5/5( this is something commendable. I have turned it on yesterday at 4:30 pm. Now today it's 11:52pm, it's charging for the 1st time. I have used it for almost 14-15 hours including 5-6 hours of calling. Even yesterday night I forgot to turn it off so it was powered on for whole night)I shall update from time t..." +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Mind-blowing purchase,Simply good product..... โค +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,5,Must buy!,Its wonderful product in budget price.. +ACCFSKBJYWZKXGCP,U&I Titanic Series - Low Price Bluetooth Neckband Bluetooth Headset,1,Horrible,In a month only one earpiece stopped working +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Brilliant,(1) Worth of the money ๐Ÿ’ฐ(2) Nice design & comfort ๐Ÿ‘‚(3) Good battery backup๐Ÿ”‹(4) Nice sound quality and Bass also ๐ŸŽถ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Nice product,"Very good option at this pricePros: Build quality, clear sound, Lightweight, branded product at low price, perfect fitting, insta wake up technology Good bass and sound(by using other music players mentioned below) Cons: Low bass which can control by other music players like Google play music, Dub music player or third party equaliser app. You will get perfect sound by playing music on this players." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Mind-blowing purchase,"I hope you guys find this review helpful, well it's too soon for a review but I think it's worth every penny, Sound - Do not have high expectations for bass atleast, rest of the sound is amazing, you get a clear voice even if it turns a bit windy on roads, songs when played have a clear voice, good for casual song listening, you can watch movies and browse, sound is good even when you play games on phone.Battery backup - is amazing, I've been using it the whole day, as soon as you put the..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Worth every penny,This price segment this is pretty good and love this boat product and sound quality is average bad battery backup is super I love this airdops +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Worth the money,Bass is not upto the mark. Sound quality is excellent. Cryastal clear sound. Boat should improve the bass quality in this airdopes. Boats other headphones having best bass .overall it's good and value for money. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Excellent,Loved the sound quality loved the base and the bild quality is awesome ๐Ÿ‘๐Ÿ‘๐Ÿ‘๐Ÿ‘ I love it plzzz go for it best airpods in this price buy it right now n for pubg also best it is ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ‘๐Ÿ‘ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Very Good,"I ordered the product in the sale on 22nd Aug & immediately received it on the morning of 23rd Aug.I must say at this price point the product is quite good. Good sound quality, good hardware, comfortable to ears & one part I liked is that it has C type charging port.Just one thing is missing which is mentioned on the box of product - Additional earmuffs for which I will be writing to Flipkart.Rest as of now is great. Time shall tell how great this product is." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,1,Hated it!,Although design is gud in look but the sound quality is cheapest...not only cheapest...its too cheapest and annoying...๐Ÿ˜ฃNot satisfied at this price... Boat rockerzz 255 is too much better then these eardopes at this price rate... ๐Ÿ‘Ž๐Ÿ‘Ž๐Ÿ‘ŽI have boat eardopes 281 which is also very good in sound and design... +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Highly recommended,"Worth a single penny ๐Ÿ‘๐Ÿ‘, big thumbs up.I am simply giving 5 star rating, it exceeds my expectations, those who is thinking to get something in affordable range,this airdopes are made for them only ๐Ÿ‘ .I ordered this on first sale , though I wanted to order Black color, but black was out of stock so I have to order this color which looks elegant as well. After using for a day I am writing this, this is worth to buy , don't think too much just go for it, according to price nothing is com..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Delightful,Good product with fine looks. Bass is not super good but it is ok u can feel beats.connectivity is good overall product is good but one thing hurts me is that it is not waterproof ๐Ÿ˜ญ and this is a issue for me rest I am happy because it's design is pretty cool . I had already one plus wireless earphone but whenever I use it it's neck wire irritates me๐Ÿ˜‚ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Good quality product,"Yeah the Airdopes are cool , 1299 is very good price and overall I'll give it 4 starsPros:1. Easy connectivity2. Sleek and good looking design3. Very good battery backup4. Case and earbuds both are madhe of high quality plasticCons:1.There is a slight 1 second delay when music is played most of you won't notice but i noticed it while playing games.2. Ears hurt while pressing the multi functional button , touch controls could have been better3. Base is not as high as what i expected f..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Wonderful,First thanks to flipkart for super fast delivery.Boat has brought great airdopes in such a affordable price.Sound quality is good .Light weight .Good colors.Bass could have been better.Overall great product from Made in India Brand Boat. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Brilliant,"Battery backup awesome...5*Bass 3* Sound 4.5*Design build 5*Lags in game audio ... Good for movies and songs ..... single earphone use feature is good... battery backup awesome , I m using for 3 hours its just 70% ...n the case is Full charged separately.....Overall in 1299 I would recommend it only if u r ready to compromise with bass ...Overall 4* ..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Great product,"Everything is fine, just need improve the bass, and one thing many users have said does not work one side, tell them u reset once and then both will work, the battery is very good and excellent performance but many people will have a slight pain in the ear while using it first time, but will not do it when they get used to it after a few days, in the last I will just say that u will not get any good from it at such a low price, THANKS boAt INDIA & THANKS Flipkart๐Ÿ˜๐Ÿ˜" +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Wonderful,Thank you flipkart for the fastest delivery got this airdopes delivered within 24 hrs .... I have been fan of boat from past 3 years and I have been using boat rockerz bluetooth earphones and then I ordered this one amazing one in this price point ...Waiting for the another sale so that I can order one more ....Thumbs Up๐Ÿ‘Must buy product โค๏ธ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,1,Worst experience ever!,"Not at all for bass lover. The music just seems to be soft nor is it loud, there's no loudness at all. According to the price it should've been a bit more worth it building up the bass & for bass lovers there's no bass at all. Giving an honest review from the day of purchase & delivered." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Excellent,"I never bought any kind of Bluetooth pairs, this was my first purchase and I can say this was the best purchase at this segment. The quality of the product and music is outstanding and I never expected that to in this price. Thank you, Flipkart for the express delivery which you offered." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Great product,"Worth buying, great product in this price, looking stylish, I like one feature in this we can also connect one earbud with one phone and 2nd with another phone, so that 2 people can use this with different device." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Super!,I think it is worth....Sound :- Sound quality is good but sometime music is stop for mili sec...btw in this price range no company provide like this...Build quality :-is good but the blue blinking light irritate me and beacuse of blue light it looks cheap...Battery :- good battery backup ...no problem +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Wonderful,Best product you can buy in this price range. Sound quality is good and connecting speed is really fast and battery backup is also good. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,1,Did not meet expectations,"Worst product ever bought. Instead, you can go and try for ""Flipkart smartbuy bass beatz"". A very decent earphones in very reasonable price. Never go for boat airdopes 131 as this is just good in look and WORST in performance. Could have given 0 star if available in option." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Pretty good,Fabulous in this range.. 1. Sound quality is very good2. Premium built quality and look.. from inside it may feel like plastic3. Battery backup is good..4. If you love bass the don't go for it..5. It doesn't block your ear.. you can hear surrounding voice while using it +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Brilliant,Nice colour nd too cute sound quality is good hope it works well +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Simply awesome,Premium design + comfortable fit + awesome funky colours + universal compatibility with bluetooth enabled devices + great price + flipkart trust + vocals clarity + instrumental separation clear even at low volume + value for money ...Love my own latest pink boat airdope 131...๐Ÿ˜ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Fabulous!,"It's nice overall mainly because of the low price. It has pressable button towards the outer part by pressing which one can receive/reject call, play/pause music. The bass is not upto the mark. Call quality is nice. But what else you need for such low cost. Good for those who don't like in-ear silicone earphones." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Terrific purchase,Boat is just super noone can beat ....in this range best earpods .... battery is super and sound is terrificFast delivery by Flipkart thanks +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Great product,Satisfying . Received today morning. Continuously using this earpods for 3 hrs and still battery is at 90% . So all good. Base can be better but good at this price. Good at calling also. I can hear voice while riding and that's really good. Overall worth buying. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Just wow!,"It is definitely a good purchase at this price, those who don't care for loud bass and thing, they can go for this, these Airdopes are perfectly balanced in terms of sound, the sound doesn't breaks at high volumes, you can still enjoy your songs smoothly. The normal calling with this works perfectly, no as such issues there, but you may find bit issues on WhatsApp calls, as voice tends to break sometimes. You can use one airdope at a time and it works perfectly.Lastly, the battery backup, i..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Delightful,Good for the priceSound if loud and clear. Bass is there but not best as these are not in-ear type. Call quality is good. And battery lasts 3.5 hrs. Good thing is type-C I can use my OnePlus charger with it. Comfortable for long hours.Dont expect too much from the product at this price. I would say if you don't want to spend much then get this. And obviously if your priority is sound quality then Sony and Bose are only option. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Good choice,Nice headsets. Great sound quality. Finest design.Will be better if bass also gets improved.overall nice and best @ this price range๐Ÿ‘Œ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Value-for-money,"The earphone got delivered in 1 day. Speaking of sound quality the sound is good you get decent amount of base for the price. The design though is not upto the mark you cannot wear it for prolonged hours as it gets uncomfortable. The microphone is ok calling experience is ok not that great. Battery backups i cannot comment on that as I havenโ€™t used it a lot. But for the price that you are paying ,this thing is totally worth the buy." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,3,Decent product,"I wish to point out one very basic thing the earbuds are designed well but the material used for covering the sound outlet is no good it in good brands its steel or metal based very fine mesh, in this case it just came out to be nothing but a cloth based thin layer pasted with low quality glue. Not a good experience. Earbud without this cover is firstly exposed and not so appealing anymore." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Wonderful,Awesome product with this price range. Nice build quality and very comfortable for long duration use. Impressed with the battery backup. Go for it.๐Ÿ˜Š๐Ÿ‘ +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,3,Does the job,Don't expect bass... decent audio quality not so great ... Good for calls and mic works well ..fits perfectly in ear but continues usuage will get pain in ears as the size is little bigOverall value for money product +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Highly recommended,Super good build quality price is better than other brands I'm fully satisfied thank you boAt +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Must buy!,"So actually these are very impressive at such low price. Boat has been always knows for delivering great sound. Its just the product quality should have been a bit more high because it will get scratches on the go.. One thing is that you cannot hold it for longer as the ear start paining. short duration is ok to use. I already owe One plus z buds , those are really very comfy. Haven't tested the backup but I believe it will pass that too.โ™ฅ๏ธThe sound part is actually a bit heavy and not so c..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Terrific purchase,"Some People mentioned that it had a bad bass. But its an excellent product, worthy to your money. Excellent sound and bass. batteruly Backup is good too.And also you can't expect apple airpods in such range of 1299Rs." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Highly recommended,"The best in class airdopes. Great sound, perfect fit and at this price it's just awesome. Highly recommended.The only issue is that Boat has mentioned additional earmuffs with the package but it is not available in the box or it is missing." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Just wow!,Mind blowing parches. Very nice headset in low budget. Go for it. I think this is the best in this price range. I ordered on 22 August and got it on 23 August. Very fast delivery. Thanks flipkart. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Great product,"I using these Headset for last 2 days. The experience with my Boat Airpods 131 Bluetooth Headset is nice. But the price (Rs-1,299)of the product is very costly. We can expect many things for these price from other brand. When we come with brand we want to sacrifice the price.Probs:1) Very good design and build for these prize2) Bluetooth connectivity is Awesome3) Type - C Port for charging the headset is good.4) 1 year warranty5) Battery backup is upto the markCons:1) Bass of the ear..." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Nice product,"This product sound quality and comfort is good, fit very well in my ears.Connection gets interrupted when moving to another room, so connection range isn't great, just Okay.It's my first airdopes, got them for 1274/- and overall recommended for this price." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Delightful,"Comfortable fit, looks good, sound quality is satisfactory above average, built quality is average, connectivity/pairing is easy,Battery performance can't predict in two day of usage of this product Overall Decent product at this point of price for a TWSIF THE BUDGET IS LOW THEN ITS A GREAT BUY" +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Nice product,"This is good only... If your looking for fast beat with high bass, then don't go with this product. Else go for it and it will be worth for amount." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Fabulous!,1. Attractive price2. Timely delivered3. Built quality is good4. Sound quality is good5. Bass is poor6. Battery backup ( Stand-by) - 12 hrs (Continuously played) - 8 hrs7. Fast connectivity8. Comfortable on ears. +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Delightful,If You really want to use a wireless airpod at this Budget you can definitely go for it... The Sound Quality is very good with low bass.! One thing I dont like about the product is the continuous flickering of the blue light in the ear. Overall a product worth for 1300/- +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,4,Wonderful,"Sound quality is above average and bass is low , design and look is amazing. At this price range it is a great deal . If you are a good music lover do not go for this, for call purposes it is good." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Awesome,Got the device in 2 days.Fast delivery by flipkart.Sound quality is the best at this price range.Even better than realme buds air and other like mivi.Best package at 1299.Must buy +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Simply awesome,"It's a nice product in this price range, but I would say a few points which boat needs to work on:1. boat should manufacture protective covers for the outer case, as I feel that it's really fragile and I'm unable to find some cover.2. It would be really good if they would have added touch controls in it. 3. The blue led which flashes in every 5 second should be turned off. It gives a really cheap look." +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Highly recommended,Excellent product under such a tight budget...Overall great experience till nowHowever the left earphone gets discharged earlier everytime than the right one even if I overcharge the left one separately or in pairGives a continuous playback of 3.5 hrs microphone is also awesome5 star for the product +ACCFSDGXX3S6DVBG,BoAt Airdopes 131 Bluetooth Headset,5,Classy product,"Fabulous just can say this word only. Awesome design, awesome fitting and loved the Voice .. A+" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Worth every penny,"Very Good sound clarity with bass, build quality is good, wire is tangled free , affordable price with good quality โ˜บ happy with this product." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Worth every penny,nice product with beautiful design and fast delivery.... once again thank you flipkart +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Pretty good,"Built quality is very good. Bass is a bit too high to listen for longer periods. You may experience mild ear pain.If you love bass go for it, but if you rather prefer smooth and balanced sound, this will not please you..." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Excellent,They are just awesome . no less then JBL. vocals and both are in balance.clear sound even at highest volume. And its pretty good loud too. Totally satisfied at this price. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Classy product,"Very good product.. loved the color and sound quality โค๏ธ It came with extra pairs of earbuds, overall the product is nice and worth money! Thank you Flipkart๐Ÿ˜Š" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Good choice,Got it by the next day of order! Excellent service by Flipkart! The earphone is awsome! the Bass and treble is as perfect to hear! If your device has Dolby Atmos or any sound enhancements them the sound is as perfect as a nature sound. Wire is enogh long. Pros:1. The sound is excellent.2. wire is enough long.3. 3.5mm jack makes it good fr any smartphone.4. It also has mic.5. It has an premium look.Cons:1. Wire is little bit soft.2. Ear buds are mat finish. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Good choice,price wise quality good. sound good. Bass is good. Everything about it is good not excellent. wire length is nice not to short nor to long. wire is tangle free. Build quality is good. in ear fit is good. Budget wise one can go for it. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Must buy!,The earphones looks so stylish and it's performance is amazing it offers a Great bass and it's supersonic looks is Wonderful โค๏ธ Thanks to Flipkart and boat for such a great product. Thank you thank you Thank you Flipkart so so much โค๏ธ +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Perfect product!,"perfect one for music lovers.. Amazing bass and treble was also good.. loving it.. its a budget range gadget, I recommend it to everyone.." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Very Good,lovely one! loved the colour the design the shape the quality is absolutely fine good bass good audio quality I'm satisfied warranty card for 1 year and A small magazine is also in the box. Go for it worth the Price ๐Ÿ˜„ +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Great product,"it's a decent product from boat, decent bass treble is good .if you want to buy a earphone that explodes with bass don't go for this one, but if you want clear punch and drums sound..than you should definitely buy this as its bass doesn't blend with treble and ruin the quality...overall nice product if you'll consider the price also" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Nice product,"Very good clarity, bass is also very good. I have previously used boat 225, compared to that , product is very light and prefectly fits in ear. Bass is slightly lesser than 225, clarity is very good somewhat better than 225, can hear every beat, microphone is also very good.Download a decent equalizer and you are all set.Last but not least ,awesome delivery by flipkart." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Perfect product!,very good product . satisfied with it. good sounds quality. and very good while gymming. Worth it. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,3,Nice,"Nice headphone.I have used both 100 and. 225 bassheads.the wire quality is also not so bad compared to bass head 225 and the best thing is in 225 the bass is over normal and so normal treble and vocal get suppress.But in 100 bass heads the sound is just balanced and bass is super and over all sounds awesome , if want a earphones and don't want over bass with suppressed treble and vocals then go with bass heads 100 where everything is balanced and. awesome." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Value-for-money,"This earphones are recommended by mePros1. Very good sound quality, bass is well balanced with trible. 2. Light weight.3. Good wire quality.4. Mic is good and button is very useful for pause and play next song, also end call.5. Strap is useful. Cons1. Lack of 'L' shaped 3.5mm jack. 2. Position of buds are curved so always need to see which one is left or right." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,1,Waste of money!,After 6 month it won't work properly it's better to select other product than this even warranty is of no use they don't provide proper information it's better to select other than this even it's normal than other earphone +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,1,Hated it!,not a good one ..I buy it seeing the review but it seems a local one ..even if you will get like the same on Flipkart at a cost of Rs 200 but only thing is no branding will be there. sound quality is not good bass is like a phata hua dhool... +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Just wow!,best sound products for me strong bass I got this in earphones thank u boat & thank u flipkart +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Just wow!,"Best budgeted earphones, build quality is so good that you can fold them without any fear of tearing. Best part is it's bass and an awesome sound experience. Best earphones till used by me. โค" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Must buy!,"The best earphones I've ever ordered. They are very handy, cute and the sound quality is superb! The delivery was before time. Got it 3 days before the due date. Thank you Flipkart !" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Perfect product!,very good product in this price segmentBass is not high that's a pretty good thing.Vocal is also good.overall it's value for money.ND Flipkart delivered it to me in 2 days that's also good. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Pretty good,Clarity os good but the bass is low and the treble is high. Wired is comparatively good as per it is not the braided cable. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Simply awesome,"One of the best under 500 if you can get ,started loving from the first day.Clarity of microphone is awesome.Bass is really good with equalisation of treble .Build quality is beyond level.Thanks Flipkart โค" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,1,Very poor,"look wise good but after 15 days it is available for just looks only ,, very bad in 15 days one side is not working properly" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,1,Very poor,I purchased one month back. now when insert into mobile phones the volume automatically reduced to zero without headset the volume function works normally. same connect to other phone also volume reduced. when we hear through other headset the volume function works effectively +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Terrific,"I just loved it .....nalla niz product.pwoli sadhanam at a relatively affordable price, niz one it's good and worth for money" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,3,Fair,i purchased this headphones about 1 yr ago 1st six month they run perfectly & nicely but after 6 month 1 side stops working sound comes only when i adjust the wire here & there but they gave you 1 yr warranty time so i got replacement of this produ but again after 6 month one side stops working & only runs if you adjust the wire basically this headphones has 1 yr life (by my experience)confused but still want to buy this coz in moderate price (375) it runs 1 yr this is my Honest re... +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Simply awesome,sound quality is very clear and the bass is also very good ๐Ÿ‘Œ๐Ÿ˜Š worth the money... I'm fully satisfied with the product ๐Ÿ˜‰๐Ÿ˜Š๐Ÿ˜ +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Excellent,Such a nice product ๐Ÿ˜Š and the sound quality is good and bass is nice.And the design is so beautiful ๐Ÿ˜Ž +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Best in the market!,"Cute color, wonderful sound and fits good to ear. I am using these for a week now and I'm really liking it." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Nice product,For whom i bought it she got surprised & also satisfied with this product & ofcourse i had a great faith on Boat headphones. I'm using since 2017.โ™ฅ๏ธโ™ฅ๏ธ +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Worth the money,This Ear phones is very nice. But it's not comfortable to use calls because the volume controller and voice mic is too long that's Y it's not comfortable to take calls Otherwise it is excellent Sound and base Volume after 6(Six) Months it's not working +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Excellent,"very good sound value of money . Best in the market, can't get so good earplugs in this money" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Just wow!,"I bought 1more and boAt BassHeads 100 headphones together, sound clarity, volume, bass and treble of boAt is much better than 1More. Comfortable ear buds, Zara Hatke design, sleek packaging. You don't wanna listen to music without boAt headphones. Truly price worthy." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Wonderful,ONE OF THE BEST HEADSET AT THIS PRICE๐Ÿ‘Œ๐Ÿ‘ŒGOOD SOUND QUALITY AND BUILD QUALITY IS ALSO AWESOME. BUT BASS IS NOT AT THAT GREAT BUT EVEN GREAT AT THIS PRICE SEGMENT. GO FOR IT GUYS. ALSO IT IS BEST FOR PUBG MOBILE.AWESOME +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Best in the market!,"simply awesome, nice quality but earpiece should little convenient with ears and the cable need atleast 6"" more. have a excellent sound quality and deep bass. love this product. keep it up boat." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Very Good,l am happy with that purchase.... l like the design of the headphone.... l like the quality of the bass also... +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,1,Useless product,zero bass. not worth the price ..better headphones for half the price like Flipkarts very own .build quality is ok .. headphones fits good in Ur ears .but important is sound quality which it lacks +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Terrific,"First of thnq too flipkart for Quick & fast service & it's sound quality is good , design awesome , & this price segment that earphone is pretty nice worth of money" +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Mind-blowing purchase,I'm so so happy Very good product So so beautiful Sound effect super And also got it warranty card +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Highly recommended,"Prefer buying JBL C200SI, but at this price point, its good. If the jack would have been gold plated, it would have been the best wired earphone. It's design is great and is really comfortable. If you use it rough, it could last by mid of 4th month from the date of purchase. So yeah it's good." +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Excellent,Just a Wow product BoAt and amazing ๐ŸššDelivery by Flipkart in the same day I ordered. Thank you Flipkart!!๐Ÿฅฐ๐Ÿฅฐ Just loves it ! +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Mind-blowing purchase,Perfect bass perfect build quality i hv been use it for past 2 months and it comes out with great performance... really Worth it :') for genuine music lovers... +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Mind-blowing purchase,Amazing headset no words for it. sound quality is very very good. Bass quality is awesome. Looks very beautiful and decent. Thanks to flipkart for providing this amazing product. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Awesome,One of the best earphones I have ever tried....I highly recommend this to anyone who is looking for best budget earphones for PUBG....and also for listening music! +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Wonderful,nice product.. color is exactly shown in the pic. best headset in this price range.. worth buying.. i ll suggest this product under this cost.. loved this headset from boAt. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,5,Brilliant,Awesome Headset . I was searching for the same on Amazon however price was aboce 699/- and finally I got then on flipkart for just 399/-๐Ÿ‘. Really Happy . Yes one area of improvement could be the timelines of delivering the product can be shorter +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,3,Fair,It's a really perfect earphone. I love it . Sound quality and base is too good in this cost. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Value-for-money,Good earbuds at this price Range and Boat provides good product at Low budget and I think if you're looking for a earbuds that is good and your budget is Low than must Buy. +ACCEVQZABYWJHRHF,BoAt BassHeads 100 Wired Headset,4,Wonderful,a very good earphone in budget sound is awesome very pure sound but the bass is ok ok.. you can go for it without thinking much