-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquor_stores.txt
1052 lines (1052 loc) · 31.9 KB
/
liquor_stores.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "091489 29648",
"international_phone_number" : "+91 91489 29648",
"name" : "Venus Wine Boutique",
"rating" : 4.6,
"user_ratings_total" : 165,
"vicinity" : "near Cosmopolitan Club, no262/1 A, 22 Nd cross, 3rd block, Jayanagar, opp.to Uphara Dharshini Hotel, near Cosmopolitan Club, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099029 29029",
"international_phone_number" : "+91 99029 29029",
"name" : "Venus Spirits",
"rating" : 4.8,
"user_ratings_total" : 9,
"vicinity" : "near Bangalore Central, Om Shree No. 32/4128 (1222 26th Main, Jayanagar 9th Block Beside Corner House, Opp. Ragigudda Arch, near Bangalore Central, J. P. Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4123 7809",
"international_phone_number" : "+91 80 4123 7809",
"name" : "Scotch Yard",
"rating" : 4,
"user_ratings_total" : 81,
"vicinity" : "126, 3rd Cross Road, 3rd Phase, J. P. Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2671 4499",
"international_phone_number" : "+91 80 2671 4499",
"name" : "Golden Fin Liquors",
"rating" : 4.2,
"user_ratings_total" : 35,
"vicinity" : "Shop No. 237, Apartments, Near Monotype, opposite Jain Prakriti Apartment, 162, Krishna Rajendra Road, Banashankari Stage II, Banashankari, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099020 60832",
"international_phone_number" : "+91 99020 60832",
"name" : "Liquor Boutique - SR Wines",
"rating" : 3.6,
"user_ratings_total" : 187,
"vicinity" : "Shree Rama Wines 707, Jayanagar, Kanakapura Road, 8th Block, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "063640 03060",
"international_phone_number" : "+91 63640 03060",
"name" : "Drops",
"rating" : 4.6,
"user_ratings_total" : 177,
"vicinity" : "#12/8/1, Hennur Main Road, Kothanur, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2362 7444",
"international_phone_number" : "+91 80 2362 7444",
"name" : "M P Wines World",
"rating" : 3.8,
"user_ratings_total" : 32,
"vicinity" : "Shop no. 1, #641, Kodigehalli Main Road Sahakara Nagar near Sterling Park, Apartments, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099022 47722",
"international_phone_number" : "+91 99022 47722",
"name" : "Manjushree Wines",
"rating" : 3.2,
"user_ratings_total" : 58,
"vicinity" : "Ramachandrapura Main Road, Near-Sumathi Kalyana Mantapa, Jalahalli, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099001 68300",
"international_phone_number" : "+91 99001 68300",
"name" : "Vin Enterprises",
"vicinity" : "Bus Stop, 242/1, Outer Ring Road, Papareddy Palya Main Road, Near-Aladamara, Naagarabhaavi, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "096329 64896",
"international_phone_number" : "+91 96329 64896",
"name" : "Sri Balaji Wines",
"rating" : 4.5,
"user_ratings_total" : 4,
"vicinity" : "31A, 80 Feet Ring Road, Papareddipalya, Near-Aladamara Bus Stop, Nagarbhavi 2nd Stage, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "094489 38822",
"international_phone_number" : "+91 94489 38822",
"name" : "Jalahalli Wine Center",
"rating" : 2.8,
"user_ratings_total" : 14,
"vicinity" : "1st Main, Bahubali Nagar, Near-Police Station, Jalahalli, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "087927 17411",
"international_phone_number" : "+91 87927 17411",
"name" : "Msil Liquor MRP Outlet",
"rating" : 4,
"user_ratings_total" : 28,
"vicinity" : "Srinivas Murthy Road, Brindavan Nagar, mathiker, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2351 1883",
"international_phone_number" : "+91 80 2351 1883",
"name" : "Globe Spirits",
"rating" : 4,
"user_ratings_total" : 197,
"vicinity" : "Shop No, opposite M.S. Ramaiah Hospital, 54, 80 Feet Road, RMV 2nd Stage, Armane Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099720 50754",
"international_phone_number" : "+91 99720 50754",
"name" : "Sahana Wines",
"rating" : 4,
"user_ratings_total" : 156,
"vicinity" : "164, Bhoopasandra Main Road, UAS Layout, R.M.V. 2nd Stage, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2860 0489",
"international_phone_number" : "+91 80 2860 0489",
"name" : "Big Banyan Wines",
"rating" : 2.6,
"user_ratings_total" : 5,
"vicinity" : "John Distilleries Pvt. Ltd No. 110, Mysore Road, Pantarapalya, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098455 26244",
"international_phone_number" : "+91 98455 26244",
"name" : "Kalpitha Wines",
"rating" : 3.2,
"user_ratings_total" : 72,
"vicinity" : "opposite Acharya College, 20, Cholanayakanahalli, R T Nagar, opposite Acharya College, Patel Muniyappa Layout, Hebbal, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099009 17610",
"international_phone_number" : "+91 99009 17610",
"name" : "Beer Box - MRP Liquor Shop",
"rating" : 4.4,
"user_ratings_total" : 303,
"vicinity" : "Ravindra Tagore Nagar Main Road, 5th Main Road, Judges Colony, AK Colony, Ganganagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098451 66999",
"international_phone_number" : "+91 98451 66999",
"name" : "Nanjudeswara Wines",
"rating" : 3.9,
"user_ratings_total" : 132,
"vicinity" : "3rd Main Road, R. T. Nagar, RT Nagar, Anand Gokul Layout, Kaval Bairasandra, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 6535 4094",
"international_phone_number" : "+91 80 6535 4094",
"name" : "Canara Wines",
"vicinity" : "12, B D A Shopping Complex, Near-State Bank ATM, R T Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2543 0003",
"international_phone_number" : "+91 80 2543 0003",
"name" : "Liquor Mart",
"rating" : 4.3,
"user_ratings_total" : 609,
"vicinity" : "Masand Esquire, 1M–404, Hennur Main Road, HRBR Layout 3rd Block, HRBR Layout, Kalyan Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "073535 73999",
"international_phone_number" : "+91 73535 73999",
"name" : "My Spiritz, My MRP Hrbr",
"rating" : 3.9,
"user_ratings_total" : 164,
"vicinity" : "Bus Stand, 919, 1st Block, Hrbr Layout, Ring Road opp Babusabpalya, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099806 37618",
"international_phone_number" : "+91 99806 37618",
"name" : "S.L.N Wines",
"rating" : 3.6,
"user_ratings_total" : 35,
"vicinity" : "Horamavu Agara Road, vadarpalya, Hennur Gardens, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "096323 54752",
"international_phone_number" : "+91 96323 54752",
"name" : "P S Liquor Mart",
"rating" : 3.8,
"user_ratings_total" : 13,
"vicinity" : "102, 1, Outer Ring Road, B Narayanapura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098442 90167",
"international_phone_number" : "+91 98442 90167",
"name" : "Fusion Wines",
"rating" : 4.2,
"user_ratings_total" : 156,
"vicinity" : "2nd Main Road, East of NGEF Layout, Kasturi Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098864 55512",
"international_phone_number" : "+91 98864 55512",
"name" : "Wine Express (More Spirits)",
"rating" : 4,
"user_ratings_total" : 48,
"vicinity" : "near Balaji Service Center, No 5, 1st Main Road, near Balaji Service Center, Adi Kabir Ashram Main Road, Thimaiah Garden, RT Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2226 9898",
"international_phone_number" : "+91 80 2226 9898",
"name" : "Royal Afghan",
"rating" : 4.5,
"user_ratings_total" : 92,
"vicinity" : "ITC Windsor, 25, Windsor Square, Golf Course Road, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2346 9868",
"international_phone_number" : "+91 80 2346 9868",
"name" : "Contessa Wines",
"rating" : 3.9,
"user_ratings_total" : 71,
"vicinity" : "27, 1, 1st Main Road, Kumara Park West, Seshadripuram, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "094484 88577",
"international_phone_number" : "+91 94484 88577",
"name" : "Ravi's Orchard Wines",
"rating" : 4.1,
"user_ratings_total" : 7,
"vicinity" : "60/2, 2nd Main Road, Opposite-Canara Bank, Vyalikaval, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "094481 80042",
"international_phone_number" : "+91 94481 80042",
"name" : "Danalakshmi Wine Store",
"rating" : 4.3,
"user_ratings_total" : 16,
"vicinity" : "Near Nandini Layout Main Road, Shankar Nagar, Geleyara Balaga Layout Nandini Layout, Yesvantpur Industrial Suburb, Mahalakshmi Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "081976 41298",
"international_phone_number" : "+91 81976 41298",
"name" : "PINKBERRY liquor shop",
"rating" : 4.1,
"user_ratings_total" : 98,
"vicinity" : "23/1, 9th Main Road, A Block, Subramanyanagar,2 State, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "072595 26272",
"international_phone_number" : "+91 72595 26272",
"name" : "Honey World wine and spirits",
"rating" : 4,
"user_ratings_total" : 27,
"vicinity" : "opposite Sandeep Vihar, SH 35, Whitefield - Hoskote Road, Kannamangala"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "091085 83578",
"international_phone_number" : "+91 91085 83578",
"name" : "House Of Spirits",
"rating" : 3.5,
"user_ratings_total" : 172,
"vicinity" : "Seegehalli, Krishnarajapura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4167 9573",
"international_phone_number" : "+91 80 4167 9573",
"name" : "Sarovara Wines Paradise",
"rating" : 3.9,
"user_ratings_total" : 90,
"vicinity" : "104, 20th Cross Road, 5th Phase, KR Layout, J P Nagar Phase 5, J. P. Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098452 30050",
"international_phone_number" : "+91 98452 30050",
"name" : "Rashmi Liquors",
"rating" : 3.8,
"user_ratings_total" : 42,
"vicinity" : "Shop No:#12, 7th Main Road, Srirampura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098802 63422",
"international_phone_number" : "+91 98802 63422",
"name" : "M Balaji Wines",
"rating" : 3.6,
"user_ratings_total" : 11,
"vicinity" : "438, Old Madras Road, Krishnarajapura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "096111 87177",
"international_phone_number" : "+91 96111 87177",
"name" : "pinkberry",
"rating" : 4,
"user_ratings_total" : 196,
"vicinity" : "13, Kaggadasapura Main Road, Kushal Layout, Kaggadasapura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "096202 14242",
"international_phone_number" : "+91 96202 14242",
"name" : "Bhagas",
"rating" : 4,
"user_ratings_total" : 291,
"vicinity" : "Kushals Corner, Nagappa Reddy Layout Main Road, Doddanekundi, Kaggadasapura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "097408 55163",
"international_phone_number" : "+91 97408 55163",
"name" : "Chandu Wines",
"rating" : 2.5,
"user_ratings_total" : 4,
"vicinity" : "# 54/24, Outer Ring Road, SrigandaKavalu, Opposite-Anjenaya Swamy Temple, Magadi Main Road, Narasimharaja Colony, Naagarabhaavi, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4200 3031",
"international_phone_number" : "+91 80 4200 3031",
"name" : "House of Spirits",
"rating" : 4.1,
"user_ratings_total" : 521,
"vicinity" : "Plot No: 121, Graphite India Main Road, AECS Layout - C Block, Brookefield, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "072590 38702",
"international_phone_number" : "+91 72590 38702",
"name" : "Drops Spirits - CMH Road",
"rating" : 4.1,
"user_ratings_total" : 67,
"vicinity" : "299, 100 Feet Road, Binnamangala, Hoysala Nagar, Indiranagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099865 23333",
"international_phone_number" : "+91 99865 23333",
"name" : "Karumari Wines",
"rating" : 3.3,
"user_ratings_total" : 43,
"vicinity" : "Rukmani Colony, Sivanchetti Gardens, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099165 96608",
"international_phone_number" : "+91 99165 96608",
"name" : "Brew and Barbeque - Microbrewery Pub",
"rating" : 4,
"user_ratings_total" : 2381,
"vicinity" : "4th Floor, Soul Space Arena, 36/5, Outer Ring Road, Doddanekundi, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4114 3665",
"international_phone_number" : "+91 80 4114 3665",
"name" : "Honey Dews Spirits",
"rating" : 4.1,
"user_ratings_total" : 450,
"vicinity" : "Shop No 35, 10th Main Road, LIC Colony, HAL 3rd Stage, Sector 12, Jeevan Bima Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "081056 96291",
"international_phone_number" : "+91 81056 96291",
"name" : "Swapnalok Liquor Boutique",
"rating" : 5,
"user_ratings_total" : 5,
"vicinity" : "no.10, 2nd main, 4th Cross Road, New Tippasandra, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4125 1137",
"international_phone_number" : "+91 80 4125 1137",
"name" : "Drops Spirits - Indiranagar 100Ft Rd",
"rating" : 4.3,
"user_ratings_total" : 162,
"vicinity" : "2006, 100 Feet Road, HAL 2nd Stage, Indiranagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099000 77990",
"international_phone_number" : "+91 99000 77990",
"name" : "Madhuloka The Liquor Boutique",
"rating" : 4.3,
"user_ratings_total" : 864,
"vicinity" : "NO. 12, G. Floor, 19th Main Road, Opp.Water tank, 1st Stage, BTM Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099027 85057",
"international_phone_number" : "+91 99027 85057",
"name" : "Hemavathi Wine Center",
"rating" : 3.3,
"user_ratings_total" : 3,
"vicinity" : "Moulya Beauty Parlour, 365, 12th A Main, Dr Rajkumar Road, 6th Block, Near, Rajajinagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2320 7099",
"international_phone_number" : "+91 80 2320 7099",
"name" : "Manjunath Wines",
"rating" : 3.8,
"user_ratings_total" : 14,
"vicinity" : "Govindaraja Nagar Ward, Govindarajanagar, Vijayanagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2340 3726",
"international_phone_number" : "+91 80 2340 3726",
"name" : "Madhushree Wines MRP",
"rating" : 3.9,
"user_ratings_total" : 162,
"vicinity" : "near Bus Stop, No 153, Nagarbhavi Main Road, Priyadarshini Layout, near Bus Stop, Mudalapalya, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "097381 89595",
"international_phone_number" : "+91 97381 89595",
"name" : "Tirumala True Spirit",
"rating" : 4.3,
"user_ratings_total" : 16,
"vicinity" : "1725, 17th Cross, M C Road, Vijayanagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2213 3333",
"international_phone_number" : "+91 80 2213 3333",
"name" : "Cyber Wines",
"rating" : 4.3,
"user_ratings_total" : 102,
"vicinity" : "7, Walton Road, Shanthala Nagar, Ashok Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2221 4945",
"international_phone_number" : "+91 80 2221 4945",
"name" : "Dewars Wine Stores",
"rating" : 4.3,
"user_ratings_total" : 331,
"vicinity" : "opposite State Bank of India, No.25, Saint Marks Road, Shanthala Nagar, Ashok Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4130 3232",
"international_phone_number" : "+91 80 4130 3232",
"name" : "Tonique टाॅनीक",
"rating" : 4.7,
"user_ratings_total" : 1482,
"vicinity" : "Rathnam's Complex, Kasturba Road, Shanthala Nagar, Ashok Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2558 5917",
"international_phone_number" : "+91 80 2558 5917",
"name" : "Sam's Wine Centre",
"rating" : 4.4,
"user_ratings_total" : 29,
"vicinity" : "10-A, Residency Road, Field Marshal Cariappa Road, Shanthala Nagar, Ashok Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2532 5355",
"international_phone_number" : "+91 80 2532 5355",
"name" : "Anurag Wines",
"rating" : 4.1,
"user_ratings_total" : 71,
"vicinity" : "opp. to H M Towers, # 5, St Patricks Complex, opp. to H M Towers, Brigade Road, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4162 6266",
"international_phone_number" : "+91 80 4162 6266",
"name" : "Liquor Mart",
"rating" : 4.4,
"user_ratings_total" : 1006,
"vicinity" : "no 4, 3rd Main, 80 ft road 8th block Opp Koramangala Indoor Stadium, Koramangala, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099168 31030",
"international_phone_number" : "+91 99168 31030",
"name" : "The Old Fashioned Bar",
"rating" : 4.1,
"user_ratings_total" : 558,
"vicinity" : "6th block, 470, 80 Feet Road, Ejipura, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4377 9582",
"international_phone_number" : "+91 80 4377 9582",
"name" : "Liquor cart",
"rating" : 4.4,
"user_ratings_total" : 53,
"vicinity" : "624, 12th Main Road, Koramangala 4th Block, Koramangala, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "096206 13362",
"international_phone_number" : "+91 96206 13362",
"name" : "Rose Wines",
"rating" : 3.1,
"user_ratings_total" : 16,
"vicinity" : "Shop No, 10, Old Race Course Road, Yellagondanpalya, Victoria Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098441 69169",
"international_phone_number" : "+91 98441 69169",
"name" : "Langford Wine & Liquor",
"rating" : 4.6,
"user_ratings_total" : 11,
"vicinity" : "Akkithimana Halli, Bheemanna Garden, Shanti Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "073490 04694",
"international_phone_number" : "+91 73490 04694",
"name" : "CHOPINE - a home for wine lovers",
"rating" : 4.7,
"user_ratings_total" : 31,
"vicinity" : "227, 1st Main Road, 7th Block, Koramangala, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099000 22990",
"international_phone_number" : "+91 99000 22990",
"name" : "Madhuloka Liquor Boutique",
"rating" : 4.4,
"user_ratings_total" : 918,
"vicinity" : "near anadh sweets, No.144, 60 Feet Road, KHB Colony, 5th Block, Koramangala, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099003 20077",
"international_phone_number" : "+91 99003 20077",
"name" : "Mrp Outlet",
"rating" : 3.8,
"user_ratings_total" : 91,
"vicinity" : "No. 19/5, Panathur Main Road Off Marathalli, Circle, Marathahalli - Sarjapur Outer Ring Road, Kadubeesanahalli, Panathur, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098442 17806",
"international_phone_number" : "+91 98442 17806",
"name" : "Mysore Sales International Limited",
"rating" : 1.5,
"user_ratings_total" : 2,
"vicinity" : "19, 6th Main, 2nd Block, BSK 1st Stage,, 50 Feet Road, Hanumantha Nagar, Banashankari, Bangalore, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2661 0513",
"international_phone_number" : "+91 80 2661 0513",
"name" : "Mohan Spirits",
"rating" : 4.2,
"user_ratings_total" : 137,
"vicinity" : "66, South End Road, Nagasandra Circle, Basavanagudi, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "098809 95081",
"international_phone_number" : "+91 98809 95081",
"name" : "RMV Wines",
"rating" : 4.2,
"user_ratings_total" : 80,
"vicinity" : "Ramagondanahalli, Whitefield, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 2669 4284",
"international_phone_number" : "+91 80 2669 4284",
"name" : "The Wine Mart",
"rating" : 4.3,
"user_ratings_total" : 47,
"vicinity" : "370, 13th Cross Road, Banashankari Stage II, Thyagaraja Nagar, Banashankari, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4115 1343",
"international_phone_number" : "+91 80 4115 1343",
"name" : "Wine World",
"rating" : 4.3,
"user_ratings_total" : 154,
"vicinity" : "ShopN0, 6, Kathriguppe Main Road, Vivekananda Nagar, Banashankari, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099000 44990",
"international_phone_number" : "+91 99000 44990",
"name" : "Madhuloka Liquor Boutique",
"rating" : 4.4,
"user_ratings_total" : 1527,
"vicinity" : "441, Ground Floor, 17th Cross Road, Sector 4, HSR Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "097314 03587",
"international_phone_number" : "+91 97314 03587",
"name" : "T H Y WINE CENTRE",
"rating" : 4.7,
"user_ratings_total" : 12,
"vicinity" : "next to SBI, 1194/1, 22nd corss, club road, next to SBI, Sector 3, HSR Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "095388 45565",
"international_phone_number" : "+91 95388 45565",
"name" : "SVS Drops",
"rating" : 4.2,
"user_ratings_total" : 209,
"vicinity" : "No 23, opposite BDA Complex, Sector 4, HSR Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "097412 17775",
"international_phone_number" : "+91 97412 17775",
"name" : "Kaveri's Honeypot",
"rating" : 4.2,
"user_ratings_total" : 75,
"vicinity" : "Bengaluru, Sector 3, HSR Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "072590 38706",
"international_phone_number" : "+91 72590 38706",
"name" : "Drops Spirits - Sarjapur Road",
"rating" : 4.3,
"user_ratings_total" : 285,
"vicinity" : "No.4, 3/1, Sarjapur Main Road, Ambalipura, Chikkakannalli, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "095352 01719",
"international_phone_number" : "+91 95352 01719",
"name" : "Shyla Wine Shop And bar",
"rating" : 3.8,
"user_ratings_total" : 73,
"vicinity" : "No.36, Ground Floor, Sreenivasa Reddy Building Somasundarapalya Circle, 27th Main Road, Sector 2, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4851 5050",
"international_phone_number" : "+91 80 4851 5050",
"name" : "UB Spirits",
"rating" : 4.4,
"user_ratings_total" : 408,
"vicinity" : "280, 5th Main Road, Sector 6, HSR Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099808 37731",
"international_phone_number" : "+91 99808 37731",
"name" : "Beer/Liquor Shop",
"rating" : 3.8,
"user_ratings_total" : 28,
"vicinity" : "Tavarekere Main Road, Madiwala, 1st Stage, BTM Layout 1, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4110 4849",
"international_phone_number" : "+91 80 4110 4849",
"name" : "Honey Drops Wines",
"rating" : 4.2,
"user_ratings_total" : 281,
"vicinity" : "No,773,16th main, 7th Cross Road, BTM 2nd Stage, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099641 86250",
"international_phone_number" : "+91 99641 86250",
"name" : "Public Rooftop Pub",
"rating" : 4.1,
"user_ratings_total" : 2538,
"vicinity" : "above Akshara eye hospital, Devarachikkanahalli main road, above Akshara eye hospital, Bannerghatta Main Road, Thayappa Garden, Ranka Colony, Bilekahalli, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099802 31555",
"international_phone_number" : "+91 99802 31555",
"name" : "MSIL Liquor Retail Outlet",
"rating" : 3.9,
"user_ratings_total" : 79,
"vicinity" : "Shop No.3851,14th Main Road,Kumaraswamy Layout, Kumaraswamy Layout II Stage, Kumaraswamy Layout, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "063644 18889",
"international_phone_number" : "+91 63644 18889",
"name" : "Liquor Mart JP Nagar",
"rating" : 4.3,
"user_ratings_total" : 407,
"vicinity" : "#474, Puttenahalli Road, RBI Layout, JP Nagar 7th Phase, J. P. Nagar, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "099000 33991",
"international_phone_number" : "+91 99000 33991",
"name" : "Madhuloka",
"rating" : 4.2,
"user_ratings_total" : 425,
"vicinity" : "B.G road No 3, Ground Floor, Bannerghatta Main Rd, Arekere Main Road, Bilekahalli, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4174 3700",
"international_phone_number" : "+91 80 4174 3700",
"name" : "Scotch Yard",
"rating" : 4.3,
"user_ratings_total" : 73,
"vicinity" : "205, Bannerghatta Main Road, Arakere Gate, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "081977 62735",
"international_phone_number" : "+91 81977 62735",
"name" : "Bhumi Spirits",
"rating" : 4,
"user_ratings_total" : 463,
"vicinity" : "Sir M Visveswaraya Road, BTS Layout, Arekere, Bengaluru"
},
"status" : "OK"
}
{
"html_attributions" : [],
"result" : {
"formatted_phone_number" : "080 4850 4854",
"international_phone_number" : "+91 80 4850 4854",
"name" : "Vanilla Spirit Zone",
"rating" : 4.1,
"user_ratings_total" : 223,