The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 3 new columns ({'review_id', 'user_id', 'date'}) and 13 missing columns ({'city', 'postal_code', 'photo_id', 'name', 'categories', 'state', 'latitude', 'longitude', 'review_count', 'attributes', 'is_open', 'address', 'hours'}).

This happened while the csv dataset builder was generating data using

hf://datasets/bridgekk/Yelp-Multimodal-Recommendation/checkin.csv (at revision 7524f27930e616a00b6ceb4d89985e26bf77b75c), [/tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/business.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/business.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/checkin.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/checkin.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/photo.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/photo.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/photo_summay.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/photo_summay.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/review.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/review.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/review_summary.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/review_summary.csv)]

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1800, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 765, in write_table
                  self._write_table(pa_table, writer_batch_size=writer_batch_size)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 773, in _write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2321, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2249, in cast_table_to_schema
                  raise CastError(
              datasets.table.CastError: Couldn't cast
              review_id: string
              user_id: string
              business_id: string
              stars: double
              date: string
              -- schema metadata --
              pandas: '{"index_columns": [{"kind": "range", "name": null, "start": 0, "' + 836
              to
              {'business_id': Value('string'), 'name': Value('string'), 'address': Value('string'), 'city': Value('string'), 'state': Value('string'), 'postal_code': Value('string'), 'latitude': Value('float64'), 'longitude': Value('float64'), 'stars': Value('float64'), 'review_count': Value('int64'), 'is_open': Value('int64'), 'attributes': Value('string'), 'categories': Value('string'), 'hours': Value('string'), 'photo_id': Value('string')}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1347, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 980, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 882, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 943, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1646, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1802, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 3 new columns ({'review_id', 'user_id', 'date'}) and 13 missing columns ({'city', 'postal_code', 'photo_id', 'name', 'categories', 'state', 'latitude', 'longitude', 'review_count', 'attributes', 'is_open', 'address', 'hours'}).
              
              This happened while the csv dataset builder was generating data using
              
              hf://datasets/bridgekk/Yelp-Multimodal-Recommendation/checkin.csv (at revision 7524f27930e616a00b6ceb4d89985e26bf77b75c), [/tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/business.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/business.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/checkin.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/checkin.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/photo.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/photo.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/photo_summay.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/photo_summay.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/review.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/review.csv), /tmp/hf-datasets-cache/medium/datasets/46872974982193-config-parquet-and-info-bridgekk-Yelp-Multimodal--0cd7af65/hub/datasets--bridgekk--Yelp-Multimodal-Recommendation/snapshots/7524f27930e616a00b6ceb4d89985e26bf77b75c/review_summary.csv (origin=hf://datasets/bridgekk/Yelp-Multimodal-Recommendation@7524f27930e616a00b6ceb4d89985e26bf77b75c/review_summary.csv)]
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

business_id
string
name
string
address
string
city
string
state
string
postal_code
string
latitude
float64
longitude
float64
stars
float64
review_count
int64
is_open
int64
attributes
string
categories
string
hours
string
photo_id
string
0bPLkL0QhhPO5kt1_EXmNQ
Zio's Italian Market
2575 E Bay Dr
Largo
FL
33771
27.916116
-82.760461
4.5
100
0
{'OutdoorSeating': 'False', 'RestaurantsGoodForGroups': 'False', 'WiFi': "u'no'", 'RestaurantsPriceRange2': '1', 'RestaurantsDelivery': 'True', 'RestaurantsAttire': "u'casual'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsTakeOut': 'True', 'Caters': 'True', 'NoiseLevel': "u'average'", 'Ambience': "{'romantic': Fa...
Food, Delis, Italian, Bakeries, Restaurants
{'Monday': '10:0-18:0', 'Tuesday': '10:0-20:0', 'Wednesday': '10:0-20:0', 'Thursday': '10:0-20:0', 'Friday': '10:0-20:0', 'Saturday': '10:0-20:0'}
['MKA75vYrSLhVz3Yvk3RQWw', 'BbxdggxkLg78WMvGhiItBQ', 'cKBQfSsCVvHs43Jc7iBgPg', '2Jl-6Vu_5xzDT9FGW-E0hQ']
MUTTqe8uqyMdBl186RmNeA
Tuna Bar
205 Race St
Philadelphia
PA
19106
39.953949
-75.143226
4
245
1
{'RestaurantsReservations': 'True', 'RestaurantsGoodForGroups': 'True', 'RestaurantsAttire': "'casual'", 'BusinessAcceptsCreditCards': 'True', 'WiFi': "'free'", 'HasTV': 'False', 'RestaurantsTakeOut': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trend...
Sushi Bars, Restaurants, Japanese
{'Tuesday': '13:30-22:0', 'Wednesday': '13:30-22:0', 'Thursday': '13:30-22:0', 'Friday': '13:30-23:0', 'Saturday': '13:30-23:0', 'Sunday': '13:30-22:0'}
['IbkOXfgXq12U5Pye_ySGFw', 'zWwgcC178Z0LI09H1Os4jg', 'wkHCtsvxQJLq69nfNbWVnQ', 'MEJvmr4Wca831eo7mh9KDQ', 'c7WmlxECYyGak81zaFxU7A', 'URyA2ofIHDTqkwiAlLBMqg', 'xJfjtaTlb_0lrBVCJXZYTw', 'img-KNm1PFHWZ5zY7e-PUQ', 'cY21KiUfBxqFqx4k1H9reQ', 'WhrXGigyMeElq4F_8BkXxA', 'EJds-DChsPTk7b_ZRkJiPQ', 'aGRJJKEwJmkFzKeTUaDhLA', 'Mk4cTZ...
ROeacJQwBeh05Rqg7F6TCg
BAP
1224 South St
Philadelphia
PA
19147
39.943223
-75.162568
4.5
205
1
{'NoiseLevel': "u'quiet'", 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", 'RestaurantsGoodForGroups': 'False', 'RestaurantsTableService': 'True', 'WiFi': "u'no'", 'GoodForKids': 'True', 'Alcohol': "u'none'", 'RestaurantsPriceRange2': '1', 'Re...
Korean, Restaurants
{'Monday': '11:30-20:30', 'Tuesday': '11:30-20:30', 'Wednesday': '11:30-20:30', 'Thursday': '11:30-20:30', 'Friday': '11:30-20:30', 'Saturday': '11:30-20:30'}
['oewWFZoEf7AVYyWJ614amw', 'xsXBRF2YZqTRGUxAilQazg', 'O-v_FDpKSKjraOnIxaR1FQ']
9OG5YkX1g2GReZM0AskizA
Romano's Macaroni Grill
5505 S Virginia St
Reno
NV
89502
39.476117
-119.789339
2.5
339
1
{'RestaurantsGoodForGroups': 'True', 'RestaurantsTakeOut': 'True', 'RestaurantsAttire': "'casual'", 'NoiseLevel': "u'average'", 'OutdoorSeating': 'True', 'BikeParking': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsPriceRange2': '2', 'Cater...
Restaurants, Italian
{'Monday': '11:0-22:0', 'Tuesday': '11:0-22:0', 'Wednesday': '10:0-22:0', 'Thursday': '11:0-20:0', 'Friday': '11:0-21:0', 'Saturday': '12:0-21:0', 'Sunday': '11:0-21:0'}
['aVfRECEoZA7-Hla76J_Eew', 'Vi1Jy1abhtlLkZc3AQsFyg', 'QiCklgnB_3-CK0LDC8XSHw', 'Ke1tLaly_9xNqv9AVfI1zA', 'y5Yp-NTx4-GDo8Vtwtpd-g']
tMkwHmWFUEXrC9ZduonpTg
The Green Pheasant
215 1st Ave S
Nashville
TN
37201
36.159886
-86.773197
4
161
0
{'RestaurantsGoodForGroups': 'True', 'HappyHour': 'True', 'GoodForMeal': "{'dessert': None, 'latenight': None, 'lunch': None, 'dinner': True, 'brunch': None, 'breakfast': None}", 'DogsAllowed': 'False', 'RestaurantsAttire': "u'casual'", 'BikeParking': 'False', 'BusinessAcceptsCreditCards': 'True', 'BusinessAcceptsBitco...
Restaurants, Japanese, Seafood
{'Wednesday': '16:0-22:0', 'Thursday': '16:0-22:0', 'Friday': '16:0-23:0', 'Saturday': '16:0-23:0'}
['W8kiIG3vksNaarHq32TihA', 'svaTfd-mcpf0iWNPmoP5SA', 'zgYVnYBAe_EPg-zIOEl0Sw', 'Fw7_ejuXBLclEA739mzKLw', 'GoexkBxBXpr-H24_iGO1ZQ', 'tcrsVsmiaaPmfdhwawPegw', '4jzFwVpxtoMde3jIS1vXJw', 'vwmdeywWWqJGUDiyaUgikQ', 'dYlABzOgB-6vMvao5-bLOA', 'PEJof6deGDgycCUgmsKWug', 'ItMKVhcjYpvT6l0lnP9zTA', 'n-3gZ5KWhKxv_d5jjv7_VA', '5_M_7g...
QdN72BWoyFypdGJhhI5r7g
Bar One
767 S 9th St
Philadelphia
PA
19147
39.939825
-75.157447
4
65
0
{'Smoking': "u'no'", 'NoiseLevel': "u'average'", 'Caters': 'False', 'WiFi': "u'free'", 'RestaurantsGoodForGroups': 'True', 'Music': "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", 'OutdoorSeating': 'False', 'RestaurantsTableService': 'Tru...
Cocktail Bars, Bars, Italian, Nightlife, Restaurants
{'Monday': '16:0-0:0', 'Tuesday': '16:0-0:0', 'Wednesday': '16:0-0:0', 'Thursday': '12:0-0:0', 'Friday': '12:0-2:0', 'Saturday': '11:0-2:0', 'Sunday': '11:0-0:0'}
['6Tm1_c_r3-TtrFpEWI6RTg']
aPNXGTDkf-4bjhyMBQxqpQ
Craft Hall
901 N Delaware Ave
Philadelphia
PA
19123
39.962582
-75.135657
3.5
65
1
{'OutdoorSeating': 'True', 'RestaurantsPriceRange2': '2', 'BusinessAcceptsCreditCards': 'True', 'DogsAllowed': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", 'HappyHour': 'True', 'Good...
Eatertainment, Arts & Entertainment, Brewpubs, American (Traditional), Bakeries, Breweries, Food, Restaurants
{'Monday': '0:0-0:0', 'Wednesday': '16:0-22:0', 'Thursday': '16:0-22:0', 'Friday': '16:0-19:0', 'Saturday': '11:0-23:0', 'Sunday': '11:0-20:0'}
['zh0zAoJYe_LGrZmatx5AFA', '7VJLjrHS4dG6Ukwc0HtrKQ', 'XXYRuUX3M3K5ebR9_mgIWg', 'Ffmz5_P_MI9VEwdPpKzDHw']
ljxNT9p0y7YMPx0fcNBGig
Tony's Restaurant & 3rd Street Cafe
312 Piasa St
Alton
IL
62002
38.896563
-90.186203
3
94
1
{'RestaurantsReservations': 'True', 'RestaurantsPriceRange2': '2', 'OutdoorSeating': 'True', 'RestaurantsDelivery': 'False', 'BusinessAcceptsCreditCards': 'True', 'Alcohol': "u'full_bar'", 'HasTV': 'True', 'Caters': 'True', 'GoodForKids': 'True', 'RestaurantsGoodForGroups': 'True', 'NoiseLevel': "u'average'", 'Restaura...
Restaurants, Specialty Food, Steakhouses, Food, Italian, Pizza, Pasta Shops
{'Monday': '0:0-0:0', 'Tuesday': '16:0-21:30', 'Wednesday': '16:0-21:30', 'Thursday': '16:0-21:30', 'Friday': '16:0-22:0', 'Saturday': '16:0-22:0', 'Sunday': '16:0-21:30'}
['oT6GlGKrZPvjOHD7wevTxQ', 'yvHPh_cf4opSfQdTbWAcSQ', 'qmQrudPF76KC_OZ6IdM6lg']
lk9IwjZXqUMqqOhM774DtQ
Caviar & Bananas
2031 Broadway
Nashville
TN
37203
36.148371
-86.798895
3.5
159
0
{'RestaurantsTakeOut': 'True', 'RestaurantsReservations': 'False', 'RestaurantsAttire': "'casual'", 'OutdoorSeating': 'True', 'BestNights': "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", 'RestaurantsTableService': 'False', 'Ambience': "...
Coffee & Tea, Restaurants, Wine Bars, Bars, Nightlife, American (Traditional), Event Planning & Services, Food, Caterers, Breakfast & Brunch, Cafes, Diners
{'Monday': '7:0-17:0', 'Tuesday': '7:0-17:0', 'Wednesday': '7:0-17:0', 'Thursday': '7:0-17:0', 'Friday': '7:0-17:0', 'Saturday': '7:0-17:0', 'Sunday': '7:0-17:0'}
['RjF2PyR5gRRbC395udG-RA', '8Y-n2laRhkuJw8uMbgbrfA', 'UFyfZp-V2atVdP9TV0TX_A', 'ojEq0zHEH27CvWEyyRm5FQ', 'J8rj_vIscaJKQ8UrWdzrBw', 'hRoc1pbusIFiVeBPk7T14w', '9Bd9wuge_u3W_gbQEqg5FA', 'XYoRxKhKbHSExM_qRsIe-A', '-YTiPSDtErjL7tU5BFwExw', '1jZ-18aNlyBDQKEBdX73Bw', 'zgo97B3u4flN2HUyFB1Z3w', 'CjKgt9PP2-C98EpldxvRKQ', 'ozTENz...
cVBxfMC4lp3DnocjYA3FHQ
Paws The Cat Cafe
10588 109 Street
Edmonton
AB
T5H 3B2
53.549633
-113.50878
5
20
0
{'RestaurantsAttire': "'casual'", 'RestaurantsReservations': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", 'Alcohol': "u'none'", 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}...
Coffee & Tea, Cafes, Pets, Restaurants, Pet Adoption, Food
{'Monday': '0:0-0:0', 'Tuesday': '10:0-21:0', 'Wednesday': '10:0-21:0', 'Thursday': '10:0-21:0', 'Friday': '10:0-20:0', 'Saturday': '10:0-18:0', 'Sunday': '10:0-18:0'}
['iqg5AaDj4qoU8XePXTYrig', '7_Os1tjnHfFueTX_fYVJQQ', 'IOgxu5km5cDB2Q9ChCaLMQ', 'vlCVKVa7asR7eq5lAbotxw', 'IUD9Ug7YkStAfP7VxeFWIQ', 'jlmtD_J8uq6U91mFlAsFTw']
seKihQKpGGnCeLuELRQPSQ
Twin Peaks
6880 E 82nd St
Indianapolis
IN
46250
39.906295
-86.047463
3.5
257
1
{'CoatCheck': 'False', 'Music': "{'dj': False}", 'Caters': 'False', 'HappyHour': 'True', 'WiFi': "'free'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'True', 'NoiseLevel': "'average'", 'Smoking': "u'no'", 'OutdoorSeating': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated'...
Sports Bars, American (New), American (Traditional), Nightlife, Bars, Restaurants
{'Monday': '0:0-0:0', 'Tuesday': '11:0-0:0', 'Wednesday': '11:0-0:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-19:0', 'Saturday': '11:0-1:0', 'Sunday': '11:0-0:0'}
['-Nqr3Otebs2wfXEXiBzULQ', 'DbER_2vnMlU_snEE_1TD8Q', 'm8aznjnpyR1xZU35CWiYMQ', '0aDlCKcIrRpohg4Pc9OU9A', 'qRm6q7b-k_911abyUEKmrA', 'HjdQddk7rWx2srCNhDC9hw', 'CqcI-o8-nKm_ZRTf7c2BvA', 'hlASsMMygqM8neY6WWSnjA', 'NegtzebQ_iFZ2Z_KpnnHUw', 'H0D4H-v_xfGViXhpE978Tw', 'RZ8HtewGfLSXTRg55cXWHA', '-ap--2HEWkISPkqbuAEAKA', 'kCBx52...
pJfh3Ct8iL58NZa8ta-a5w
Top Shelf Sports Lounge
3173 Cypress Ridge Blvd
Wesley Chapel
FL
33544
28.196252
-82.380615
4.5
95
1
{'BestNights': "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", 'ByAppointmentOnly': 'False', 'GoodForDancing': 'False', 'BusinessAcceptsCreditCards': 'True', 'HappyHour': 'True', 'Alcohol': "u'full_bar'", 'RestaurantsAttire': "u'casual'"...
Burgers, Sports Bars, Bars, Lounges, Restaurants, Salad, Wraps, Nightlife, American (New)
{'Monday': '11:30-22:0', 'Tuesday': '11:30-23:30', 'Wednesday': '11:30-23:30', 'Thursday': '11:30-23:30', 'Friday': '11:30-23:30', 'Saturday': '10:0-23:30', 'Sunday': '10:0-22:0'}
['bFtXIQS4MfiCdM9gC7Pakg', 'kvkNi7bgrClsFCuBQhlALw', '0G4TPNx3oYgYd_dupAVWXw', 'tozrKO4ZbxVK-Di7TakcXg', 'JE1uLrIT3HkJwjK1WXLSdA', 'b3L6QEbGy4QSobcwTG6f0g']
7clCBgNbd-x2Wj96lZ6Mjw
Bier Brewery and Tap Room
5133 E 65th St
Indianapolis
IN
46220
39.875532
-86.082857
4.5
139
1
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '2', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'NoiseLevel': "u'average'", 'Caters': 'False', 'RestaurantsTakeOut': 'True', 'BikeParking': 'True', 'ByAppointmentOnly': 'False', 'GoodForKids':...
Food, Beer, Wine & Spirits, Breweries
{'Tuesday': '15:0-21:0', 'Wednesday': '15:0-21:0', 'Thursday': '15:0-21:0', 'Friday': '13:0-21:0', 'Saturday': '12:0-21:0', 'Sunday': '12:0-19:0'}
['vTEKs3jLmlkfK7o_3k9jVA', 'W5lzQJCUrR6T8cM32Xc6IQ', 'EVfc6zKzQHp4402N3O1ldg', 'T5QfBWWm4SldOUfiqSlwsA', 'ub6l4jbadlAGbPhXTfn1mw']
IDtLPgUrqorrpqSLdfMhZQ
Helena Avenue Bakery
131 Anacapa St, Ste C
Santa Barbara
CA
93101
34.414445
-119.690672
4
389
1
{'RestaurantsTakeOut': 'True', 'NoiseLevel': "u'average'", 'Caters': 'True', 'Ambience': "{'touristy': False, 'hipster': True, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': True, 'upscale': False, 'classy': False, 'casual': True}", 'RestaurantsReservations': 'False', 'BusinessAcceptsCreditCards': 'Tru...
Food, Restaurants, Salad, Coffee & Tea, Breakfast & Brunch, Sandwiches, Bakeries
{'Monday': '0:0-0:0', 'Tuesday': '8:0-14:0', 'Wednesday': '8:0-14:0', 'Thursday': '8:0-14:0', 'Friday': '8:0-14:0', 'Saturday': '8:0-14:0', 'Sunday': '8:0-14:0'}
['BVJxeYMwnaimDyAap72R4g', '_09yyC20ahFMJFRdBiUseg', 'J9A487t740uj9qufxAhG4Q', 'sRHnMbvjCIhxs_Yss33ENQ', 'E1RtardUBcJQjXMIllbdEw', 'TtgBcZdqzy1rtA5Ds3xC1A', 'iZRD3uPcOQ-8L2eatN8CXw', 'nXbSQDm89neCZZB-9bFoGw', 'Tp_ijI8ACS5rtrcajcMkGA', 'rMu65yQ_-QoFXxwyBJE3gQ', 'TnB5c6MgsOL5FxNlnCTuaw', 'zV0uOudVRhjvuaU93JwNFg', 'SELYAH...
YNjyv0gfOr2g8lbmUpTnKg
Copper Vine
1001 Poydras St
New Orleans
LA
70112
29.950647
-90.074427
4.5
350
1
{'NoiseLevel': "u'average'", 'RestaurantsGoodForGroups': 'True', 'WheelchairAccessible': 'True', 'WiFi': "u'free'", 'HappyHour': 'True', 'OutdoorSeating': 'True', 'BusinessAcceptsCreditCards': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': Fals...
Nightlife, Pubs, Event Planning & Services, Wine Bars, Bars, Gastropubs, Restaurants, Venues & Event Spaces
{'Monday': '0:0-0:0', 'Tuesday': '11:0-21:0', 'Wednesday': '11:0-21:0', 'Thursday': '11:0-21:0', 'Friday': '11:0-23:0', 'Saturday': '10:30-22:0', 'Sunday': '10:30-21:0'}
['91uZIwIeVUIB65QW1wSzww', '7U9UCimjhnzN2a5SNJBGeA', 'DXUqK9SD-UiEG-Cn9smULw', '3Rce8fpxy9bDv4Bd4yPXGw', 'LHPr0WaHYh3rr_hvJO-DNQ', 'hlv3HE0gH9F485s1tE-XvA', 'CqyS7nlbh5qhcAOJbK6mzg', 'N0MR_muix6omQl0Q_yjoLQ', 'YIc9xLnYNF5K7vX29W17Zg', 'soYZpjW8ycvXtBmOdGxhFg', 'lN3lcJr6fMre9IlXy5QIcQ', 'CbJYveA0BXVPXFWOYV9wdw', 'KL1P3d...
oaboaRBUgGjbo2kfUIKDLQ
Mike's Ice Cream
129 2nd Ave N
Nashville
TN
37201
36.162649
-86.775973
4.5
593
1
{'RestaurantsGoodForGroups': 'True', 'GoodForKids': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'Alcohol': "u'none'", 'BusinessAcceptsCreditCards': 'True', 'NoiseLevel': "u'average'", 'Caters': 'False', 'Ambience': "{'romantic': False, 'intimate': Fa...
Ice Cream & Frozen Yogurt, Coffee & Tea, Restaurants, Sandwiches, Food
{'Monday': '8:0-23:0', 'Tuesday': '8:0-23:0', 'Wednesday': '8:0-23:0', 'Thursday': '8:0-23:0', 'Friday': '8:0-0:0', 'Saturday': '8:0-0:30', 'Sunday': '8:0-23:0'}
['2V526ny3gf_oZHMyZEECOA', '1XrhFMMoTFaa5IYsuVInew', 'uxlK_nKwEZNc-o_i2Csraw', 'qd3-1pPRXTPJcMx2zBt0lQ', 'ftQn9Jj1rsfpGhnLTmwWBg', 'rTgxWAy0rvc2Enf96Lx5Ug', 'aYmR4Gb8GMmnWlqMXXcu-g', 'BvB7BOrdiIjc2njUMtDZbQ', '8r1yxSuebldc08k04FT2cw', 'bOfUsP8wQDJKmuXbNR71wQ', 'uD8AujbNt2yU0nH1Hy7aqQ', 'bEhEGA9dXucbSxV8e6fwGQ', 'B8tzeX...
TLZ3-eDPLhUzfsWO4ad6Ug
Mahony's Po-Boys & Seafood
901 Iberville St
New Orleans
LA
70112
29.955415
-90.070062
4
382
1
{'RestaurantsGoodForGroups': 'True', 'DogsAllowed': 'False', 'Alcohol': "'full_bar'", 'RestaurantsAttire': "u'casual'", 'RestaurantsDelivery': 'False', 'RestaurantsReservations': 'False', 'BusinessAcceptsCreditCards': 'True', 'HasTV': 'True', 'RestaurantsTableService': 'True', 'RestaurantsPriceRange2': '2', 'WiFi': "u'...
Restaurants, Seafood, Cajun/Creole
{'Monday': '0:0-0:0', 'Thursday': '15:0-20:0', 'Friday': '12:0-20:0', 'Saturday': '12:0-20:0', 'Sunday': '12:0-20:0'}
['LBWDgMYjclMYu9wpStbChg', 'bhBoa4FZMz6tMRItfjSZig', 'hxKYYDY7nA7Q7eA7ePf7tw', 'FU2PSgotWlIkYlSGK995VQ', 'ZjHlC9xK47YOKAOph9O_tQ', 'QOfX0lYUScrlIthwrYqD5Q', 'u-bX1Fmb0mEyolP8u02nsg', '4WRNcvVHyIllAldJ33FbbA', 'pFYyj8i88Szagu3iHetlPA']
sB45WFgysT617bKWP_WJwA
Budweiser Brewery Experience
1200 Lynch St
Saint Louis
MO
63118
38.600197
-90.213538
4.5
605
1
{'BikeParking': 'True', 'BusinessAcceptsCreditCards': 'True', 'RestaurantsTakeOut': 'False', 'RestaurantsPriceRange2': '1', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", 'ByAppointmentOnly': 'True'}
Bars, Beer Gardens, Food, Breweries, Nightlife, Tours, Pubs, Wine Tours, Beer Tours, Hotels & Travel
{'Monday': '0:0-0:0', 'Tuesday': '9:0-17:0', 'Wednesday': '9:0-17:0', 'Thursday': '9:0-17:0', 'Friday': '9:0-17:0', 'Saturday': '9:0-17:0', 'Sunday': '9:0-17:0'}
null
3BJxm-HnvzdwD1zjmSbmyQ
Golden Chopstick Chinese Restaurant
1800 Spring Garden St
Philadelphia
PA
19130
39.963078
-75.168027
3
137
1
{'GoodForKids': 'True', 'RestaurantsDelivery': 'True', 'Alcohol': "u'none'", 'RestaurantsTakeOut': 'True', 'RestaurantsPriceRange2': '1', 'BusinessAcceptsCreditCards': 'True', 'OutdoorSeating': 'False', 'RestaurantsGoodForGroups': 'True', 'BikeParking': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'val...
Restaurants, Chinese
{'Monday': '0:0-0:0', 'Tuesday': '11:0-22:30', 'Wednesday': '11:0-22:30', 'Thursday': '11:0-22:30', 'Friday': '11:0-22:30', 'Saturday': '11:0-22:30', 'Sunday': '12:0-22:30'}
['p8HLcUryXQRDEULxvZ6ykg', 'jqnFepIj7l52pZ3nwrETSA', 'WdhEsYajckfw_tAl60yt4Q', 'dxhvqwDqQHEhj889pmB1zg', 'sD-GCXV3jcqz0hIh0STvHQ', 'XHNa_D8O38v8G3zA4gSC_w', 'An2pTAMga2EG6IrxyjduRA']
SZU9c8V2GuREDN5KgyHFJw
Santa Barbara Shellfish Company
230 Stearns Wharf
Santa Barbara
CA
93101
34.408715
-119.685019
4
2,404
1
{'OutdoorSeating': 'True', 'RestaurantsAttire': "'casual'", 'RestaurantsReservations': 'False', 'BusinessAcceptsCreditCards': 'True', 'NoiseLevel': "u'average'", 'RestaurantsPriceRange2': '2', 'RestaurantsGoodForGroups': 'False', 'WiFi': "u'no'", 'Alcohol': "'beer_and_wine'", 'RestaurantsTakeOut': 'True', 'BikeParking'...
Live/Raw Food, Restaurants, Seafood, Beer Bar, Beer, Wine & Spirits, Bars, Food, Nightlife
{'Monday': '0:0-0:0', 'Tuesday': '11:0-21:0', 'Wednesday': '11:0-21:0', 'Thursday': '11:0-14:0', 'Friday': '11:0-21:0', 'Saturday': '11:0-21:0', 'Sunday': '11:0-21:0'}
['pve7D6NUrafHW3EAORubyw', 'qX1qGwODrGMMKi_2m2Fcpw', '-vdO_232AqgGmhrclquQmA', 'Gbw9P3sYjptOq8nblY-r5w', 'UbvNl0Xz8cQ6DmYTrFMo7Q', 'jwFas4Yh_OcXuRpGTMFF-A', 'oNwcgxSqv5UDysvPgFnHDw', 'ne6CYDOvelxv4doaOyWx4A', 'zVSWBbXBR4VGrdIDUj2IDw', 'dD4tTBVz5SPbrR1D08BrIg', 'c-72na_gN2g7kCiDERv14A', 'L2mKBL4Uv6hiFFuuJ9kbEQ', '5SxO9c...
WYYdQDjx-DsCanlP0DpImQ
J Sushi
243 S 10th St
Philadelphia
PA
19107
39.947033
-75.157434
4.5
72
0
{'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", 'Alcohol': "'none'...
Seafood, Restaurants, Sushi Bars, Japanese
{'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-22:30', 'Saturday': '12:0-22:30', 'Sunday': '12:0-22:0'}
['CT8hzJr9fXv098idRFA1HA', 'HFvifLMGW7vQxE3_ihIlcg', 'yRUD9VAdpXLT2RNYNehJwQ', 'WsATarCMd7Wel0DfQwqw7g', '4EQOTR3Vh3IBXO2JeZbonQ', 'APOU19OcXYsJlKVEwMTCpQ', 'lcGFECxzOWrJdSqocyMn6g', 'fYQqjdEFDdGhOAbiW8LLzQ', 'tNcW8xrTuI8tOaQ6O4CAnQ', '2R1jKnNAMeDM-TUKK7_YGQ', 'x7fIQXN6IcTvjumcOC11tQ', 'pWDUACMzyWJ80fu4VW7thQ', 'WUyNPh...
X_E7U2lVNEwbH_gpOBmAHQ
Cerveza Jack's
135 2nd Ave N
Nashville
TN
37201
36.162799
-86.776016
4
182
1
{'GoodForDancing': 'True', 'Smoking': "u'no'", 'GoodForKids': 'False', 'RestaurantsDelivery': 'False', 'BikeParking': 'True', 'RestaurantsAttire': "'casual'", 'RestaurantsPriceRange2': '2', 'RestaurantsGoodForGroups': 'True', 'CoatCheck': 'False', 'DogsAllowed': 'False', 'RestaurantsTakeOut': 'True', 'WiFi': "'free'", ...
Nightlife, Restaurants, Bars, Mexican
{'Monday': '0:0-0:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-1:0', 'Saturday': '11:0-1:0', 'Sunday': '11:0-22:0'}
['vajVR2IaHAjXpdfAmijj8g', '_AFKp9aEr9daRo89O0dPHg', '-_NIZwWW57XKP5Z9juiGzw', 'cw2cizR4ZzloKGZtDV-zcA']
hPAmGKnDqummngSTOJN_8g
Timber Creek Park
236 Taylor Ave
Gloucester Township
NJ
08012
39.831468
-75.058986
4.5
86
1
{'GoodForKids': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'ByAppointmentOnly': 'False', 'BikeParking': 'True', 'DogsAllowed': 'True'}
Dog Parks, Active Life, Parks
{'Monday': '7:0-19:0', 'Tuesday': '7:0-19:0', 'Wednesday': '7:0-19:0', 'Thursday': '7:0-19:0', 'Friday': '7:0-19:0', 'Saturday': '7:0-19:0', 'Sunday': '7:0-19:0'}
null
ORL4JE6tz3rJxVqkdKfegA
Gaylord Opryland Resort & Convention Center
2800 Opryland Dr
Nashville
TN
37214
36.211592
-86.694319
3
1,639
1
{'BusinessAcceptsCreditCards': 'True', 'ByAppointmentOnly': 'True', 'RestaurantsDelivery': 'True', 'RestaurantsPriceRange2': '3', 'RestaurantsGoodForGroups': 'True', 'GoodForKids': 'True', 'OutdoorSeating': 'True', 'RestaurantsReservations': 'True', 'HasTV': 'True', 'RestaurantsTakeOut': 'True', 'NoiseLevel': "u'very_l...
Venues & Event Spaces, Performing Arts, Arts & Entertainment, Hotels & Travel, Food, Convenience Stores, American (New), Beauty & Spas, Restaurants, Museums, Event Planning & Services, Hotels, Cinema, Resorts, Day Spas
{'Monday': '0:0-0:0', 'Tuesday': '0:0-0:0', 'Wednesday': '0:0-0:0', 'Thursday': '0:0-0:0', 'Friday': '0:0-0:0', 'Saturday': '0:0-0:0', 'Sunday': '0:0-0:0'}
null
IYlUaKC9nICjiWdk-ShPlg
Bub's Cafe
220 2nd St SW
Carmel
IN
46032
39.976614
-86.130124
4
175
0
{'RestaurantsReservations': 'False', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsAttire': "u'casual'", 'BikeParking': 'True', 'OutdoorSeating': 'True', 'Alcohol': "u'beer_and_wine'", 'RestaurantsGoodForGroups': 'True', 'RestaurantsDelivery': 'Fals...
Restaurants, Breakfast & Brunch
{'Monday': '7:0-14:0', 'Tuesday': '7:0-14:0', 'Wednesday': '7:0-14:0', 'Thursday': '7:0-14:0', 'Friday': '7:0-14:0', 'Saturday': '7:0-14:0', 'Sunday': '7:0-14:0'}
null
r_8FZXRkGoc5QNbTOAIftA
MDG Salon Studio
355 Indiana Ave, Ste 100
Indianapolis
IN
46204
39.77251
-86.162683
4.5
85
0
{'BusinessAcceptsCreditCards': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'GoodForKids': 'False', 'BikeParking': 'True', 'ByAppointmentOnly': 'False', 'RestaurantsPriceRange2': '2', 'WiFi': "u'free'", 'WheelchairAccessible': 'True'}
Makeup Artists, Beauty & Spas, Hair Salons, Hair Removal, Eyelash Service
{'Monday': '0:0-0:0', 'Tuesday': '10:0-20:0', 'Wednesday': '10:0-20:0', 'Thursday': '10:0-20:0', 'Friday': '10:0-18:0', 'Saturday': '10:0-16:0'}
null
Dtuf4vD0znzwJW9vk3iTNw
Tomo Japanese Steakhouse and Sushi Bar
7411 N Keystone Ave, Ste A
Indianapolis
IN
46240
39.888725
-86.121213
4
246
1
{'OutdoorSeating': 'False', 'RestaurantsGoodForGroups': 'True', 'RestaurantsReservations': 'True', 'Alcohol': "u'full_bar'", 'WiFi': "u'free'", 'BusinessAcceptsCreditCards': 'True', 'NoiseLevel': "u'average'", 'BikeParking': 'False', 'RestaurantsTakeOut': 'True', 'RestaurantsPriceRange2': '2', 'HasTV': 'True', 'Restaur...
Steakhouses, Restaurants, Sushi Bars, Japanese
{'Monday': '0:0-0:0', 'Tuesday': '16:30-22:0', 'Wednesday': '16:30-22:0', 'Thursday': '16:30-22:0', 'Friday': '16:30-22:30', 'Saturday': '12:0-22:30', 'Sunday': '12:30-21:30'}
['J8eEVj8U4CIWfIBjmw-0Ww']
Ucl9Vo5lwrUmYbV8Dv8X5g
O'Briens Irish Pub
15435 N Dale Mabry Hwy
Tampa
FL
33618
28.09236
-82.500588
4
108
1
{'RestaurantsGoodForGroups': 'True', 'Alcohol': "u'full_bar'", 'RestaurantsDelivery': 'False', 'RestaurantsAttire': "u'casual'", 'BikeParking': 'True', 'RestaurantsReservations': 'False', 'OutdoorSeating': 'True', 'RestaurantsTakeOut': 'True', 'BusinessAcceptsCreditCards': 'True', 'WiFi': "u'free'", 'GoodForKids': 'Tru...
Bars, Pubs, Nightlife, Arts & Entertainment, Irish, Restaurants, Music Venues
{'Monday': '18:0-2:30', 'Tuesday': '15:0-1:0', 'Wednesday': '15:0-1:0', 'Thursday': '15:0-1:0', 'Friday': '11:30-14:45', 'Saturday': '11:30-14:45', 'Sunday': '11:30-13:0'}
['sNHvbfF74OnBAXnfINx2RA', 'XQz7fBeB75q_Woie-0RG3Q']
bTve2mwLk5Zc01vRKqc2KQ
Red Hook Coffee & Tea
765 S 4th St
Philadelphia
PA
19147
39.938552
-75.149636
4.5
183
1
{'BikeParking': 'True', 'OutdoorSeating': 'True', 'RestaurantsReservations': 'False', 'RestaurantsPriceRange2': '1', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'RestaurantsAttire': "'casual'", 'RestaurantsGoodForGroups': 'False', 'WiFi': "'free'", 'Ambience...
Restaurants, Breakfast & Brunch, Vegan, Bagels, Food, Coffee & Tea
{'Monday': '7:0-18:0', 'Tuesday': '7:0-18:0', 'Wednesday': '7:0-18:0', 'Thursday': '7:0-18:0', 'Friday': '7:0-18:0', 'Saturday': '7:0-18:0', 'Sunday': '7:0-18:0'}
['u-9Z-Av0gNNYdJdcuTTdeA', '6eoT5G2spR48Wto4WUZwTQ']
my0bmPD5dgDFE1ia__LNlw
Nails & Beauty Lounge
953 E Brandon Blvd
Brandon
FL
33511
27.937166
-82.269959
3.5
84
1
{'ByAppointmentOnly': 'False', 'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '2', 'BikeParking': 'False', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': False, 'valet': False}"}
Beauty & Spas, Waxing, Nail Salons, Hair Removal
{'Monday': '9:30-19:0', 'Wednesday': '9:30-19:0', 'Thursday': '9:30-19:0', 'Friday': '9:30-19:0', 'Saturday': '9:30-19:0', 'Sunday': '11:0-17:0'}
null
Edg22x3CZkIv0GUib2oEFA
Mellow Mushroom
8227 Oak St
New Orleans
LA
70118
29.948624
-90.13125
3.5
149
0
{'RestaurantsTakeOut': 'True', 'GoodForKids': 'True', 'WiFi': "'free'", 'RestaurantsAttire': "u'casual'", 'HasTV': 'True', 'BikeParking': 'True', 'NoiseLevel': "u'average'", 'RestaurantsPriceRange2': '2', 'Caters': 'True', 'RestaurantsDelivery': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated':...
Pizza, Restaurants, Bars, Nightlife, Sandwiches
{'Monday': '0:0-0:0', 'Tuesday': '11:0-21:0', 'Wednesday': '12:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-23:0', 'Saturday': '11:0-23:0', 'Sunday': '11:0-22:0'}
['BgusYEc2SZnmT2MBwsDvbg', 'YTOkvgfY9NAyhCI4xwk_BQ', 'SwZOsG_QJVjY48lSoSlEBA', '-PCuO-cFVal454RkBMtMEQ', '3DMOnHhnnJXc7e2438bTxQ', '1ZCpU7gIQTl0vGSGHnTHqg', 'pqxM0ZKEByRd8kBJnjmOZA']
py5aKmlTB2NarfsfcOpHOQ
Cafe Con Leche
4100 George J Bean Pkwy
Tampa
FL
33607
27.976775
-82.537423
2.5
55
1
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'False', 'BikeParking': 'False', 'WiFi': "'free'", 'RestaurantsReservations': 'False', 'GoodForKids': 'True', 'DogsAllowed': 'False', 'RestaurantsTableService': 'False', 'RestaurantsAttire': "'casual'", 'OutdoorSeating': 'False', 'RestaurantsTakeOut': '...
Restaurants, Breakfast & Brunch, Coffee Roasteries, Coffee & Tea, Food
{'Monday': '0:0-0:0', 'Tuesday': '0:0-0:0', 'Wednesday': '0:0-0:0', 'Thursday': '0:0-0:0', 'Friday': '0:0-0:0', 'Saturday': '0:0-0:0', 'Sunday': '0:0-0:0'}
null
wZhGuW7vQpfhxeEvLHkTrA
Express Cafe
400 E Fairview Ave
Meridian
ID
83642
43.619649
-116.387139
4.5
119
1
{'OutdoorSeating': 'False', 'RestaurantsReservations': 'False', 'BusinessAcceptsCreditCards': 'True', 'GoodForKids': 'True', 'NoiseLevel': "u'average'", 'RestaurantsTakeOut': 'True', 'RestaurantsDelivery': 'False', 'RestaurantsAttire': "u'casual'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': Fal...
Restaurants, Breakfast & Brunch
{'Monday': '7:0-14:0', 'Tuesday': '6:30-14:0', 'Wednesday': '6:30-14:0', 'Thursday': '6:30-14:0', 'Friday': '6:30-14:0', 'Saturday': '6:30-14:30', 'Sunday': '7:0-14:30'}
['NEhDKKPhlr3MEzMlG9KMyg', '8T-sY0zaxCDgGMEED7F2Rg', 'XPodJWCqLOIT39g620L-pg', '-2FJia5LORDEW0Y4zssNCg', 'UjjlzTLmDyjk06gjBYqRjA', '4rUEvMsCs2j9bwUQ7gvnNQ', 'sYBl4z3lkvyCY1LqCuXx6Q', 'n0_EX3IdjMYQu39TvG8SWQ']
dJfkfBbJz7wi0RgW-ph_Eg
Sake House
5106 E Fowler Ave
Tampa
FL
33617
28.055212
-82.399374
3
140
0
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '2', 'HasTV': 'True', 'RestaurantsGoodForGroups': 'True', 'OutdoorSeating': 'False', 'GoodForKids': 'True', 'WiFi': "u'no'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsTakeOut': 'T...
Restaurants, Sushi Bars, Japanese
{'Monday': '11:0-23:0', 'Tuesday': '11:0-2:0', 'Wednesday': '11:0-2:0', 'Thursday': '11:0-2:0', 'Friday': '11:0-2:0', 'Saturday': '12:30-2:0', 'Sunday': '12:30-22:0'}
['VVTCHIoYctV75_kp4y32Yw']
-7GDqSUaXrpC8Ql7nDBxWA
B2 Bluefin
401 E City Ave
Bala Cynwyd
PA
19004
40.007984
-75.212606
4
92
0
{'BusinessAcceptsCreditCards': 'True', 'GoodForKids': 'False', 'OutdoorSeating': 'False', 'CoatCheck': 'True', 'RestaurantsGoodForGroups': 'True', 'RestaurantsTableService': 'True', 'Alcohol': "u'full_bar'", 'RestaurantsAttire': "'dressy'", 'RestaurantsReservations': 'True', 'Music': "{'dj': None, 'background_music': F...
Nightlife, Bars, Cocktail Bars, Japanese, Restaurants, Sushi Bars, Asian Fusion
{'Monday': '11:30-22:0', 'Tuesday': '16:30-22:0', 'Wednesday': '11:30-22:0', 'Thursday': '11:30-22:0', 'Friday': '11:30-0:0', 'Saturday': '16:30-0:0', 'Sunday': '16:30-22:0'}
['7-49gQ4G2Gfi2W7UqhO0ig', 'ECv3RI9_oWOTMzfqfX64GQ', 'PE_nQecEOMKZrDLELFFFUA', '-2t1HwZaAu_R17hIsEIStA', 'XFesDLPy74zTQ6ePt4OMWA', 'dARoz4NBoDW8KhqmiKtlFg', '0qHZLfwXVvUyCfJX54nBwA', 'l0ifhUaKgVvaj5AhLFrWUQ', '7aAO_y6YYUmOY36g9sWDjA', '-B6r9NEZcvjEz1xOnU-lkQ', 'UYQkkF0QXZu3y-NEe0RWDQ', 'Jl7MgpA2STGbJz5WOkrWJg', 'yc0d4V...
tuyCmcmm5Q-bc-9zV76xKA
Pho Friendly
729 Brunswick Ave
Trenton
NJ
08638
40.23547
-74.753212
4.5
93
0
{'RestaurantsGoodForGroups': 'True', 'BikeParking': 'False', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", 'HasTV': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated':...
Thai, Vietnamese, Chinese, Restaurants
{'Monday': '11:0-19:0', 'Tuesday': '11:0-19:0', 'Wednesday': '11:0-19:0', 'Thursday': '11:0-19:0', 'Friday': '11:0-19:0', 'Saturday': '11:0-15:0'}
['1LahYja_kIO9ND_E6gNYSw']
zVlhs7BVaouutt-rles-YA
Williams Sub Shop
3801 Tyrone Blvd N
Saint Petersburg
FL
33709
27.806517
-82.749065
4.5
99
1
{'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BikeParking': 'True', 'BusinessAcceptsCreditCards': 'False', 'OutdoorSeating': 'False', 'WiFi': "u'no'", 'Alcohol': "u'none'", 'Caters': 'True', 'GoodForKids': 'True', 'RestaurantsPriceRange2': '1', 'Ambience': "...
Restaurants, Sandwiches
{'Monday': '10:0-20:0', 'Tuesday': '10:0-20:0', 'Wednesday': '10:0-20:0', 'Thursday': '10:0-20:0', 'Friday': '10:0-20:0', 'Saturday': '10:0-18:0', 'Sunday': '11:0-17:0'}
['Eg23gBRnHXCA0RXT9Ze9sA', 'CL_pzi5o9zBgLewXwM7PsQ']
0CEUpFtaKhxbmrbSdP9MUQ
Acadia
824 S 8th St
Philadelphia
PA
19147
39.938948
-75.156408
4
79
0
{'Caters': 'True', 'DogsAllowed': 'True', 'RestaurantsPriceRange2': '2', 'RestaurantsTakeOut': 'True', 'RestaurantsReservations': 'True', 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", 'BusinessParking': "{'garage': False, 'street': True, '...
Restaurants, Cajun/Creole, Southern, Nightlife, Cocktail Bars, Breakfast & Brunch, Seafood, Bars
{'Monday': '0:0-0:0', 'Tuesday': '17:0-23:0', 'Wednesday': '17:0-23:0', 'Thursday': '17:0-0:0', 'Friday': '17:0-2:0', 'Saturday': '17:0-2:0', 'Sunday': '10:0-23:0'}
['EHmZ5AYTlx602Qf9LajTUQ', 'JZABylZHVSBTUoL7Wak06A']
f82dhKNiUXsDVPMLqKYiIQ
Sher-e-Punjab
853 East Grant Rd
Tucson
AZ
85719
32.25096
-110.959158
4
446
1
{'RestaurantsAttire': "'casual'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'True', 'BYOBCorkage': "'no'", 'OutdoorSeating': 'False', 'RestaurantsPriceRange2': '2', 'RestaurantsDelivery': 'True', 'GoodForKids': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'l...
Restaurants, Salad, Pakistani, Indian, Cocktail Bars, Food, Food Delivery Services, Soup, Halal, Bars, Nightlife
{'Tuesday': '16:0-21:0', 'Wednesday': '16:0-21:0', 'Thursday': '16:0-21:0', 'Friday': '16:0-21:0', 'Saturday': '16:0-21:0', 'Sunday': '16:0-21:0'}
['vP1LEn6lWsLS8OSEpEQsUg', 'rF0Hyk5pCjTqilIz95npZA', '8e5_IwEiYBJYk8cQMDtJ4w', 'AW9LfxbEcDwnPUpxZjlCDg', 'QcrmblHFuIPlHWQORl6sWw', 'FQUDTjh-20RBCUza7iRIOQ', 'bSk4s5Ob4ljNIasAw7iphA', '0FF0J7s43vZPZBZIqRIkJQ', 'C4kEdhFWKsKmdksB_xCwmA', 'PWwnIH4kXhJKOooK65Jw7A', 'WT_tt73eUOZa6bwYeB_HlQ', 'jY5NzQ0C15JlWLozH-4wqg']
xJyp6RLqNRv3tSu6njPKxQ
World of Beer
102 Main St, Ste 100
Exton
PA
19341
40.023665
-75.629188
3
208
1
{'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsTakeOut': 'True', 'RestaurantsTableService': 'True', 'HappyHour': 'True', 'GoodForDancing': 'False', 'DogsAllowed': 'True', 'Smoking': "u'outdoor'", 'WheelchairAccessible': 'True', 'RestaurantsReservati...
Nightlife, Pubs, American (Traditional), Restaurants, Bars
{'Monday': '0:0-0:0', 'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-23:30', 'Saturday': '11:0-23:30', 'Sunday': '11:0-20:0'}
['zrsTV_0w8PkZZxJ_Hd5EbQ', '1EdOBK2GpjP_2pg_B1OOYw', 'JldeJ4uI5gnwWIhEngyeWg', 'Bxv2cey1rnYqX308gMO_mw', 'xmiqcsogjmIGFNy63iTPNw', '0EsQA4ithDzsn8PWGkYADQ', 'X-iQN1wu3eyz3VOWtJyEQA', '77br2N2FoUdeC7KP0FKsYg']
1P_mGUY1PyPq7_ZabrzpBw
Carmine's Steakhouse
20 S 4th St
Saint Louis
MO
63102
38.624358
-90.188685
4
261
1
{'BikeParking': 'False', 'RestaurantsReservations': 'True', 'HasTV': 'True', 'Alcohol': "'full_bar'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '3', 'RestaurantsGoodForGroups': 'True', 'GoodForKids': 'False', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, '...
Italian, Restaurants, Steakhouses
{'Monday': '16:0-22:0', 'Tuesday': '16:0-21:0', 'Wednesday': '16:0-21:0', 'Thursday': '16:0-21:0', 'Friday': '16:0-22:0', 'Saturday': '16:0-22:0'}
['0dLvaM2GXwUXO-Np90VaBg', 'dU20tEh4d8gZ2xmODqC6FA', 'S4Y1MkntXOXtABso-mMriA']
XwoXi0M66RU6Gouq-DSDHw
G Peppers Grill & Tavern
8745 Gunn Hwy
Odessa
FL
33556
28.092136
-82.578574
4
82
1
{'RestaurantsGoodForGroups': 'True', 'RestaurantsAttire': "u'casual'", 'GoodForKids': 'True', 'Alcohol': "u'beer_and_wine'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsReservations': 'False', 'RestaurantsTak...
Restaurants, Mexican, American (Traditional)
{'Monday': '11:0-22:0', 'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-23:0', 'Saturday': '11:0-23:0', 'Sunday': '10:30-21:0'}
null
OfW-VK04qr7b7bPm5QbyLg
Taqueria Feliz
303 Horsham Rd
Horsham
PA
19044
40.180727
-75.134699
3
77
0
{'RestaurantsPriceRange2': '2', 'RestaurantsGoodForGroups': 'True', 'GoodForKids': 'True', 'RestaurantsTableService': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", 'RestaurantsDelivery': 'False', 'RestaurantsTakeOut': 'True', 'DogsAllowed': 'False', 'Re...
Mexican, Pizza, Restaurants
{'Monday': '11:30-21:0', 'Tuesday': '11:30-21:0', 'Wednesday': '11:30-21:0', 'Thursday': '11:30-21:0', 'Friday': '11:30-22:0', 'Saturday': '16:0-22:0', 'Sunday': '16:0-20:30'}
['TiYsPGBM6v0Bv99t_LfGLA', '1lpXRe2gfIqfNMJBhh62tA']
0DbIUh_Xuj6H5B_SF0RLCQ
Iguana's Mexican Restaurant
680 E 56th St, Ste A
Brownsburg
IN
46112
39.851862
-86.384758
4
74
1
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsTakeOut': 'True', 'HappyHour': 'True', 'RestaurantsGoodForGroups': 'True', 'OutdoorSeating': 'True', 'NoiseLevel': "u'average'", 'GoodForKids': 'True', 'RestaurantsPriceRange2': '2', 'RestaurantsReservations': 'False', 'RestaurantsAttire': "'casual'", 'GoodForMeal': "{...
Restaurants, Mexican
{'Monday': '10:30-22:0', 'Tuesday': '10:30-22:0', 'Wednesday': '10:30-22:0', 'Thursday': '10:30-22:0', 'Friday': '10:30-22:30', 'Saturday': '10:30-22:30', 'Sunday': '10:30-22:0'}
['e748Xs-y-IoD-an19PTcBQ']
bSJczuohHVko33UT82hnfA
Blaze Pizza
611 O'keefe Ave
New Orleans
LA
70113
29.948395
-90.075281
4
302
1
{'Ambience': "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': True, 'upscale': False, 'casual': True}", 'WiFi': "u'free'", 'Alcohol': "u'beer_and_wine'", 'RestaurantsGoodForGroups': 'True', 'RestaurantsReservations': 'False', 'GoodForMeal': "{'desse...
Pizza, Fast Food, Gluten-Free, Restaurants, Salad
{'Monday': '0:0-0:0', 'Tuesday': '11:0-22:0', 'Wednesday': '12:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-22:0', 'Saturday': '11:0-22:0', 'Sunday': '11:0-22:0'}
['OQr1vbJET4Rf_Q-um_F6KA', 'sF6AwMS0s-bMINPFv_L4LQ', 'd6ggzgIADAACW8PJyo_pSg', 'reNvpaWasuTw7ukkTqabyw', 'aDc-k117dnLxVFkbm4MI_g', 'eWu9Ggjl0cRzHO3aaANQAQ', 'hQYIfsJ-o_5Mi6vq--aLcQ', 'fXisXPS99Xu8EYkmTGca5Q', 'PsaO_QYiGWt6XC-DHcXD1g', 'oqXn4TSi3uKxnrpzXVPxbA', 'ZKbn67wjJ5WcoTc9ngovlA', 'tUCURuuqzMyJT7LaGFeKBw', 'lHoKch...
dChRGpit9fM_kZK5pafNyA
The Love
130 S 18th St
Philadelphia
PA
19103
39.950656
-75.170899
4
618
1
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsReservations': 'True', 'HasTV': 'False', 'GoodForMeal': "{'dessert': True, 'latenight': None, 'lunch': True, 'dinner': True, 'brunch': True, 'breakfast': None}", 'RestaurantsGoodForGroups': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': Fals...
Restaurants, American (New), Breakfast & Brunch, Burgers
{'Monday': '0:0-0:0', 'Tuesday': '17:0-21:0', 'Wednesday': '17:0-21:0', 'Thursday': '17:0-21:0', 'Friday': '16:0-21:0', 'Saturday': '16:0-22:0', 'Sunday': '16:0-21:0'}
['p5-MXsoG6Ffh59ism9z6nA', 'j8uOHGODZd8k6U_ptVt3Cw', 'l1fIyQugEY51In6E0RK9Jg', 'btL8X2bqTDqdcTdoHkIUvw', 'xuPZVqRNlhS2t1nRzyq6Gg', 'MiIVah6EsQjnu0Ht-x2D2Q', 'PfpoakfcoV5bUnYFSXiydg', 'q0eePAWwj5kNiRHxHvmGlw', 'S-SOym855Q6uygm3KLbFHg', 'bP6vvokox695TvHJS_bDUQ', '2vc3gB4EdlrxrmT-EM70DA', 'k68K_3CSz3tgaDq7dMMFYQ', '_xecKi...
j9Kaj_6tSeXmVMYCgZithg
Noble Crust
28330 Paseo Dr
Wesley Chapel
FL
33543
28.188219
-82.347274
4.5
496
1
{'BusinessAcceptsCreditCards': 'True', 'DogsAllowed': 'False', 'WiFi': "'free'", 'HappyHour': 'True', 'Caters': 'True', 'GoodForKids': 'True', 'WheelchairAccessible': 'True', 'RestaurantsAttire': "'casual'", 'NoiseLevel': "u'average'", 'Music': "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': Fal...
Restaurants, Italian, Nightlife, Southern, Bars, Breakfast & Brunch, Pizza
{'Monday': '16:0-22:0', 'Tuesday': '16:0-22:0', 'Wednesday': '16:0-22:0', 'Thursday': '16:0-22:0', 'Friday': '11:30-23:0', 'Saturday': '10:0-23:0', 'Sunday': '10:30-15:0'}
['htNeiRiyo1pcCeIaKOI7Ew', 'xSafrXPEL4R6hetbh3kP3g', 'PrS80oeekHu6Vwh4SwvjtA', '2DtvjjzgQJqzQpZFofUgMw', 'x7Yma2Btsakpx24BnDs6Ig', 'eT0v0L73OX0R1B55gKWAWw', 'cT_jDOTzTo2xeNmV4_NuTw', 'DOFh5pZPmOu5S38PM6Oppg', 'ayh0dj38SbLHByiUZJ3l6A', '9_lsAPTRpyRPeH15xsAG4Q', 'J94BMI-xZAY49RsKGpR4oA', 'wKIQP4l5NDOAHLixaoSb3Q', '7EadTy...
4xhGQGdGqU60BIznBjqnuA
California Tacos and Taproom
956 Embarcadero Del Norte
Isla Vista
CA
93117
34.411555
-119.855077
4
49
0
{'Music': "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", 'BestNights': "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", 'Ambience': "{'touristy': False, 'h...
Mexican, Beer Bar, Bars, Sports Bars, Nightlife, Restaurants, Tacos
{'Monday': '0:0-0:0', 'Tuesday': '10:0-22:0', 'Wednesday': '10:0-22:0', 'Thursday': '10:0-22:0', 'Friday': '10:0-22:0', 'Saturday': '12:0-22:0', 'Sunday': '12:0-20:30'}
['O76r8_uhA3-NL-ltJrWuXQ', 'xosXxZWmpTTYiAAV4vsL3w', 'xXBUFHdaNBTOrJ_iaOAI2g', 'b9A27wEgDujpGiWxGggFoA', '_5RnXNUJJUB8seG10E445Q']
juVJO2kMrHwCYXwQQmv1Tg
Sidekicks Pizza
1105 Shelby St
Indianapolis
IN
46203
39.752008
-86.139572
4
45
0
{'Alcohol': "'beer_and_wine'", 'WiFi': "u'free'", 'RestaurantsTableService': 'True', 'RestaurantsAttire': "'casual'", 'WheelchairAccessible': 'True', 'HasTV': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': Fal...
Sandwiches, Restaurants, Pizza, Salad
{'Tuesday': '16:0-23:0', 'Wednesday': '16:0-23:0', 'Thursday': '16:0-23:0', 'Friday': '11:0-1:0', 'Saturday': '11:0-1:0', 'Sunday': '11:0-20:0'}
['T_HtU5zxLqd9GpBx-hi_zQ']
QWqKTWQ2OiDgo3dzNkpung
Jong Ka Jib
6600 N 5th St
Philadelphia
PA
19126
40.052064
-75.127394
4.5
351
1
{'Alcohol': "u'none'", 'RestaurantsGoodForGroups': 'True', 'RestaurantsAttire': "'casual'", 'OutdoorSeating': 'False', 'BikeParking': 'True', 'BYOBCorkage': "'yes_free'", 'RestaurantsTakeOut': 'True', 'Caters': 'False', 'GoodForKids': 'True', 'WiFi': "u'no'", 'RestaurantsReservations': 'True', 'Corkage': 'False', 'Rest...
Korean, Restaurants
{'Monday': '10:30-22:30', 'Tuesday': '10:30-22:30', 'Wednesday': '10:30-22:30', 'Thursday': '10:30-22:30', 'Friday': '10:30-22:30', 'Saturday': '10:30-22:30', 'Sunday': '10:30-22:30'}
['N3aB3815jLecYaqG_Yscfg', 'tplwlEU-uu2phEHVhCTNKg', 'ZA6kZBzb0qZtWf1T0AMGmA', 'JsPhqnbrqdH1E4-EYbyEyA', 'kEPZDNObYOJ0UThPFUYA1g', 'GAMEkYtMZP6ukR8_KOz4gg', 'z_2Hn0I0ShKZk2W0qwXNxg', 'miOF875sLwZVoKy3t1SBGA', '3z_EpoYbDUsWtp4cOtB9zg']
eJ77e9lGxY3ArzaoDbHhYw
Paddy Whacks Irish Sports Pub - South Street
150 South St
Philadelphia
PA
19147
39.941054
-75.145463
2.5
161
1
{'RestaurantsGoodForGroups': 'True', 'BusinessAcceptsCreditCards': 'True', 'BikeParking': 'True', 'RestaurantsPriceRange2': '2', 'HasTV': 'True', 'RestaurantsReservations': 'False', 'WiFi': "u'free'", 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'OutdoorSeati...
Bars, Nightlife, Pubs
{'Monday': '11:0-2:0', 'Tuesday': '11:0-2:0', 'Wednesday': '11:0-2:0', 'Thursday': '11:0-2:0', 'Friday': '11:0-2:0', 'Saturday': '11:0-2:0', 'Sunday': '11:0-2:0'}
['G1AeJrtO2bANF1X_alyxeA', 'zz2bLUhuuAiwUX2Igs39Uw']
7mpYTDb24SywNMRn3yeakQ
The Twisted Tail
509 S 2nd St
Philadelphia
PA
19147
39.941877
-75.145199
4
604
1
{'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'RestaurantsReservations': 'True', 'Alcohol': "u'full_bar'", 'NoiseLevel': "u'average'", 'RestaurantsTakeOut': 'True', 'RestaurantsGoodForGroups': 'True', 'GoodForKids': 'False', 'BusinessAcceptsCreditCards': 'Tru...
Event Planning & Services, Whiskey Bars, American (New), American (Traditional), Venues & Event Spaces, Bars, Nightlife, Restaurants
{'Monday': '0:0-0:0', 'Tuesday': '16:0-22:0', 'Wednesday': '16:0-22:0', 'Thursday': '12:0-22:0', 'Friday': '16:0-0:0', 'Saturday': '11:0-0:0', 'Sunday': '10:0-2:0'}
['XY5QEVhnE2aVT6Uir6YxPQ', 'PY9Aq4Pj1xzzvXsotdC6iw', 'iBJQVBjdc0opScRnN4VE-A', 'hRpmn8UhZtMcxk0N9ExHog', '9emk_WwlgL1avZSYBmBxGQ', 'fXCRTivjf7oDRjQdIWrAEw', 'KnzdpHgMQw14zMksd-RPTw', 'lD_JRch6EvZF89EsOu1Tqg', 'VxQX-PBmNH8NUSq-e_sqwQ', 'YZy-CMM8nNrx9U30yTyIEg', 'cRbBteLwCjJ5swauNCXLJw', '35NZwnJ1SOCevTtOGSlHag', '__M9y7...
C43IEVBroD_3YiumPPLLdQ
Half Price Books
4709 E 82nd St
Indianapolis
IN
46250
39.904804
-86.089809
4
48
1
{'RestaurantsPriceRange2': '1', 'BikeParking': 'False', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BusinessAcceptsCreditCards': 'True', 'DogsAllowed': 'False', 'RestaurantsDelivery': 'False', 'RestaurantsTakeOut': 'True'}
Books, Mags, Music & Video, Comic Books, Shopping, Bookstores
{'Monday': '10:0-20:0', 'Tuesday': '10:0-16:0', 'Wednesday': '10:0-20:0', 'Thursday': '10:0-20:0', 'Friday': '10:0-20:0', 'Saturday': '10:0-20:0', 'Sunday': '11:0-18:0'}
null
JPm93BlP-UHYPqFgK66JUw
Local Links
533 Station Ave
Haddon Heights
NJ
08035
39.882694
-75.058384
4.5
70
1
{'NoiseLevel': "u'average'", 'RestaurantsDelivery': 'False', 'RestaurantsGoodForGroups': 'False', 'BikeParking': 'True', 'Alcohol': "'none'", 'RestaurantsTableService': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'RestaurantsAttire': "'casual'", 'Cat...
Coffee & Tea, Restaurants, American (New), Food, Cafes, Breakfast & Brunch
{'Monday': '10:0-19:0', 'Tuesday': '9:30-19:30', 'Wednesday': '9:30-19:30', 'Thursday': '9:30-19:30', 'Friday': '9:0-20:0', 'Saturday': '8:0-18:0', 'Sunday': '9:0-16:0'}
null
VeFfrEZ4iWaecrQg6Eq4cg
Cal Taco
7320 Hollister Ave, Ste 1
Goleta
CA
93117
34.430542
-119.882367
4
189
1
{'RestaurantsGoodForGroups': 'True', 'BusinessAcceptsCreditCards': 'True', 'WiFi': "u'no'", 'RestaurantsAttire': "'casual'", 'RestaurantsPriceRange2': '1', 'RestaurantsTakeOut': 'True', 'GoodForKids': 'True', 'HasTV': 'True', 'RestaurantsReservations': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'val...
Burgers, Cafes, Restaurants, Mexican, American (Traditional)
{'Monday': '0:0-0:0', 'Tuesday': '8:0-20:30', 'Wednesday': '8:0-20:30', 'Thursday': '8:0-20:30', 'Friday': '8:0-20:30', 'Saturday': '8:0-20:30', 'Sunday': '8:0-20:30'}
['NOeQ-PXA5RmfzW2rhVrieQ', 'gKyUT6NmRpzUdS9vpnEqAA', 'IAogy1Q2OiBvbGuCz1Mqng']
pJB63RaQpkTIKBhfTsLQQg
Biryani Hut
14350 Mundy Dr, Ste 700
Noblesville
IN
46060
39.997088
-86.002312
4
83
1
{'GoodForKids': 'True', 'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", 'RestaurantsPriceRange2': '2', 'GoodForMeal': ...
Restaurants, Indian
{'Tuesday': '17:0-21:30', 'Wednesday': '17:0-21:30', 'Thursday': '17:0-21:30', 'Friday': '17:0-21:30', 'Saturday': '17:30-22:0', 'Sunday': '17:30-22:0'}
['a7xWzVo6vEVrYY3HbryNtg']
ngvE1G9IckUO-ljZBFo23w
Mumbai Bistro
930 Locust St
Philadelphia
PA
19107
39.947207
-75.157252
4
217
0
{'RestaurantsReservations': 'False', 'OutdoorSeating': 'False', 'Ambience': "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", 'GoodForKids': 'True', 'RestaurantsTakeOut': 'True', 'Alcohol': "u'none'", 'Resta...
Indian, Restaurants
{'Tuesday': '11:30-21:0', 'Wednesday': '11:30-21:0', 'Thursday': '11:30-21:0', 'Friday': '11:30-21:0', 'Saturday': '11:30-21:0', 'Sunday': '11:30-21:0'}
null
46_2e1hnQ4csLrYnhn6bkw
Whetstone Tavern
700 S 5th St
Philadelphia
PA
19147
39.940872
-75.151047
4
166
0
{'RestaurantsAttire': "'casual'", 'NoiseLevel': "u'average'", 'RestaurantsTakeOut': 'True', 'GoodForDancing': 'False', 'RestaurantsGoodForGroups': 'True', 'HasTV': 'True', 'Music': "{'dj': False, 'background_music': True, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", 'RestaurantsTableService': 'T...
Restaurants, Cocktail Bars, American (New), Desserts, American (Traditional), Nightlife, Bars, Food
{'Monday': '12:0-0:0', 'Tuesday': '12:0-0:0', 'Wednesday': '12:0-0:0', 'Thursday': '12:0-0:0', 'Friday': '12:0-0:0', 'Saturday': '10:0-0:0', 'Sunday': '10:0-0:0'}
['Ap7H0tJ4FfxRCQpeXskdTQ', 'CIegpC6XzMdDxIwJbTxehQ', 'rmuqKDXsSecu9OBY4MUvBw', 'AZTOyMgjeSPy7ImNok8MMw', 'a80VkFgy6Xsq8pnxZX2vmA', 'DTJmm_4WPySyJP_zxnmwYg']
TGfPJHImEq6AQL9a1laxlg
Chick-fil-A
9711 Roosevelt Blvd
Philadelphia
PA
19114
40.08178
-75.026791
4
80
1
{'RestaurantsPriceRange2': '1', 'BusinessAcceptsCreditCards': 'True', 'WiFi': "u'free'", 'BikeParking': 'True', 'Caters': 'True', 'Alcohol': "u'none'", 'RestaurantsGoodForGroups': 'True', 'Ambience': "{'romantic': False, 'intimate': False, 'classy': False, 'hipster': False, 'divey': False, 'touristy': False, 'trendy': ...
Event Planning & Services, American (Traditional), Restaurants, Food, Caterers, Fast Food, Chicken Shop, Breakfast & Brunch
{'Monday': '0:0-0:0', 'Tuesday': '10:30-18:0', 'Wednesday': '6:30-22:0', 'Thursday': '6:30-22:0', 'Friday': '6:30-22:0', 'Saturday': '6:30-20:0'}
['6xZFLidVeeKl5LWR-MskRg', '7SZcavDjMMRQZ4bx7B53iA', '3jgUD7mwfJ7bqwXmEENuzg', 'FTfOvz2qiEBeX95VizLoWA', '7HBEKzKiSzRirWUI5LMjPw', 'b8KSeTA18jc8WzHy-u__8w']
kxvOUehCtJAL2nYKkeiR-w
Incrediplex
6002 Sunnyside Rd
Indianapolis
IN
46236
39.866083
-85.975098
4
33
0
{'GoodForKids': 'True', 'BusinessAcceptsCreditCards': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BikeParking': 'False', 'DogsAllowed': 'False', 'WiFi': "u'free'", 'BusinessAcceptsBitcoin': 'False', 'WheelchairAccessible': 'True'}
Specialty Schools, Education, Gyms, Sports Clubs, Arts & Entertainment, Venues & Event Spaces, Arcades, Event Planning & Services, Recreation Centers, Fitness & Instruction, Art Schools, Local Services, Child Care & Day Care, Active Life
{'Monday': '0:0-0:0', 'Tuesday': '12:0-22:0', 'Wednesday': '12:0-22:0', 'Thursday': '12:0-22:0', 'Friday': '12:0-22:0', 'Saturday': '9:0-22:0', 'Sunday': '17:30-20:0'}
null
dIpTuL2T1L98GQGU17IeSw
The Bricks
1327 E 7th Ave
Tampa
FL
33605
27.960024
-82.444401
4
548
1
{'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'GoodForKids': 'True', 'Caters': 'True', 'Alcohol': "u'full_bar'", 'RestaurantsTakeOut': 'True', 'RestaurantsGoodForGroups': 'True', 'RestaurantsAttire': "u'casual'", 'BikeParking': 'True', 'WiFi': "u'free'", 'Bus...
Bars, Breakfast & Brunch, Restaurants, American (New), Coffee & Tea, Food, Nightlife, Vegetarian
{'Monday': '0:0-0:0', 'Wednesday': '16:0-0:0', 'Thursday': '16:0-0:0', 'Friday': '16:0-1:0', 'Saturday': '12:0-1:0', 'Sunday': '12:0-21:0'}
['155rIUgmhUn9MmXDj2LAHQ', 'fI1YGQs_La6Cap1ThQJ-gg', '5pgPsW0NnFM9U5UFTpgUyw', 'z6zC4JomiQtcbrEEHcFHgQ', 'lDijyafLgjg1-pE9qgeq7A', '8g0UugIpQtASF4IvjYFjtA', 'lIqyVCZ1E4CTPTDn3RhVng', 'U92K3TyNed31VJ_VBjfqnQ', 'Sb6KVX01UDbEPuFk0IaVXw', 'mEhdZO7DNqvZPSQq4RT2GQ', 'kjEnFUGsYfMZr4y04OuQdA', 'pOha0YAjchvnjXmYJFFgOw', 'GcbD9p...
bf34LpGej_MZbOlAKB1beQ
Sherbrooke Liquor Store
11819 Saint Albert Trail NW
Edmonton
AB
T5L 5B5
53.571086
-113.548768
4.5
77
1
{'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BikeParking': 'True', 'Caters': 'False', 'RestaurantsPriceRange2': '2', 'RestaurantsTakeOut': 'True', 'RestaurantsDelivery': 'True'}
Beer, Wine & Spirits, Food
{'Monday': '10:0-20:0', 'Tuesday': '10:0-20:0', 'Wednesday': '10:0-20:0', 'Thursday': '10:0-20:0', 'Friday': '10:0-20:0', 'Saturday': '10:0-20:0', 'Sunday': '10:0-20:0'}
null
SlLfWzeYOrVBxCd-0QILZQ
The Boiling House
1990 Marlton Pike E, Ste 10
Cherry Hill
NJ
08003
39.899661
-74.9533
4
238
1
{'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': True, 'brunch': False, 'breakfast': False}", 'HasTV': 'True', 'Caters': 'True', 'RestaurantsAttire': "u'casual'", 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'u...
Cajun/Creole, Seafood, Noodles, Restaurants
{'Tuesday': '15:0-22:0', 'Wednesday': '15:0-22:0', 'Thursday': '15:0-22:0', 'Friday': '15:0-22:0', 'Saturday': '12:0-22:0', 'Sunday': '12:0-22:0'}
['gXxLG-nxkN7xS8biBmW_6A', 'QM2eNVREzNhjQ0RK21_ILQ', '66z5PcBWk0lp4C9naTSIog', '4oM7nI53n862Fkl001rZRA', 'x1ShXRlhTgS9yesX-FD5Mg', '4ijLE3sYL4EyHlvUQXf8cg', 't96PiKWewp2jUbVcJFYhog', 'hPHpZfdvm_W7zBhgKZeXiw', 'xFmSIMXHa2toPNXgTwhzSg', 'hQGHPybXI6HvM9hjYHjW8g', 'ogr4hGLm1LC_cWgfOllHpA', 'ocmsxWBfP91N2wbX7ZsXvw', '8XPc3z...
pNu5bd9aL3jcJClfdQ86MQ
Momo's Ouzaria Taverna
630 N And S Rd
St Louis
MO
63130
38.660377
-90.337143
3.5
243
0
{'BusinessAcceptsCreditCards': 'True', 'Caters': 'True', 'RestaurantsAttire': "'casual'", 'RestaurantsGoodForGroups': 'True', 'RestaurantsPriceRange2': '2', 'RestaurantsReservations': 'True', 'BikeParking': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}",...
Mediterranean, Lounges, Bars, Nightlife, Restaurants, Greek
{'Monday': '11:0-1:0', 'Tuesday': '11:0-1:0', 'Wednesday': '11:0-1:0', 'Thursday': '11:0-1:0', 'Friday': '11:0-1:0', 'Saturday': '11:0-1:0', 'Sunday': '17:0-0:0'}
['0Xtg_SfiZ9QHIyOpN8piJg']
hx-qUirkgRqX2Bk8A2U0nA
Pima County Fair
11300 S Houghton Rd
Tucson
AZ
85747
32.048263
-110.773896
4
40
1
{'GoodForKids': 'True', 'BusinessAcceptsCreditCards': 'True'}
Arts & Entertainment, Venues & Event Spaces, Event Planning & Services, Festivals
null
null
SwWfW3vBn5QkDE7T3urGAg
Persis Biryani Indian Grill
630 S Mount Juliet Rd, Ste 310
Mount Juliet
TN
37122
36.162142
-86.516006
4.5
246
1
{'RestaurantsTakeOut': 'True', 'HappyHour': 'False', 'RestaurantsPriceRange2': '2', 'BikeParking': 'True', 'OutdoorSeating': 'True', 'Alcohol': "'beer_and_wine'", 'Caters': 'True', 'RestaurantsDelivery': 'True', 'WheelchairAccessible': 'True', 'RestaurantsReservations': 'True', 'RestaurantsGoodForGroups': 'True', 'Busi...
Indian, Restaurants
{'Monday': '0:0-0:0', 'Tuesday': '17:0-21:30', 'Wednesday': '17:0-21:30', 'Thursday': '17:0-21:30', 'Friday': '17:0-22:0', 'Saturday': '11:0-22:0', 'Sunday': '11:0-21:30'}
['OzulVH2fTdZnLx1TEB0XRA', 'DgsdSpeGBYNK8fG8joyAyg', 'DJI180lzAADRyWS2TIqVEQ', 'cB7e9ad5_wv73I7b6LYh6Q', '10dO_I9cpG6C8HY_xyUV-g', 'mEkNFj_LRXf1ASkxTyqoqw']
W4rgF_1eKzFZiGUOsgbGMA
Amber Indian Restaurant
12510 N Meridian St
Carmel
IN
46032
39.971082
-86.160173
4
243
1
{'GoodForKids': 'True', 'OutdoorSeating': 'False', 'RestaurantsAttire': "u'casual'", 'RestaurantsPriceRange2': '2', 'RestaurantsGoodForGroups': 'True', 'Alcohol': "u'beer_and_wine'", 'RestaurantsTakeOut': 'True', 'HasTV': 'True', 'BusinessAcceptsCreditCards': 'True', 'Caters': 'True', 'BikeParking': 'False', 'BusinessP...
Pakistani, Indian, Restaurants
{'Monday': '17:0-22:0', 'Tuesday': '17:0-22:0', 'Wednesday': '17:0-22:0', 'Thursday': '17:0-22:0', 'Friday': '17:0-22:0', 'Saturday': '17:0-22:0', 'Sunday': '17:0-22:0'}
['i88Yflt685ICkB6ta6-8sQ', 'MJSdi7DSP9zgrfljdXRcBg']
yN6jZyG1G1FG_HCZQlJZ1g
City Barbeque
9367 Ambleside Dr
Fishers
IN
46038
39.979376
-86.001692
4
188
1
{'RestaurantsAttire': "'casual'", 'OutdoorSeating': 'True', 'NoiseLevel': "u'average'", 'RestaurantsPriceRange2': '2', 'BikeParking': 'True', 'Caters': 'True', 'RestaurantsGoodForGroups': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsReserv...
Restaurants, Caterers, Barbeque, American (Traditional), Event Planning & Services
{'Monday': '11:0-21:0', 'Tuesday': '11:0-21:0', 'Wednesday': '11:0-21:0', 'Thursday': '11:0-21:0', 'Friday': '11:0-21:0', 'Saturday': '11:0-21:0', 'Sunday': '10:30-19:30'}
['8qsIKsdJx7V4XB54HlBRhw', 'VHZFWKoP7iPnaPgNJUtRlQ', 'yJ4Eqieaozhr3_ere6jkHw', 'gUpv9_PAAm_Ydws17wVk8w', 'pzfpzDfc9uhYX2Z2nPBZQw', 'JIDgxjESBE3dJeeKj16zBA', 'QITuMq0vtW04UGPMB5cMWQ', '427N00vBtrvi1T0v2ahGcw', 'S3hRJpXBzSRWmYIg-YTt7A', 'bQcQ1bkNGjgV9LaL_LGxVw', 'QEFm8CpspGj6nLfxUcZ_pA']
-lVTNjVoTMOkD-eT--u0oA
El Rancho Nuevo
1644 Country Club Plaza Dr
Saint Charles
MO
63303
38.768745
-90.52198
3.5
66
1
{'NoiseLevel': "u'loud'", 'RestaurantsTakeOut': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'divey': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': False, 'casual': False}", 'OutdoorSeating': 'False', 'WiFi': "'paid'", 'RestaurantsReservations': 'True', 'Busines...
Mexican, Restaurants
{'Monday': '11:0-22:0', 'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-22:30', 'Saturday': '11:0-22:30', 'Sunday': '11:0-22:0'}
null
cAUe8LFnDjii_sx_4fRMaA
Once Upon A Child - Reno
5000 Smithridge Dr, Ste A21
Reno
NV
89502
39.47842
-119.788736
2.5
113
1
{'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '1', 'BikeParking': 'True', 'DogsAllowed': 'False'}
Fashion, Children's Clothing, Shopping
{'Monday': '9:0-20:0', 'Tuesday': '9:0-20:0', 'Wednesday': '9:0-20:0', 'Thursday': '9:0-20:0', 'Friday': '9:0-20:0', 'Saturday': '9:0-20:0', 'Sunday': '11:0-17:0'}
null
lPPYZr1_jx0XeW-xR9WJtw
DOSC
10190 - 104 Street NW, Main Floor
Edmonton
AB
T5J 1A7
53.542872
-113.499512
4
87
1
{'RestaurantsReservations': 'True', 'RestaurantsTakeOut': 'True', 'RestaurantsTableService': 'True', 'Ambience': "{'touristy': False, 'hipster': False, 'romantic': False, 'intimate': False, 'trendy': False, 'upscale': False, 'classy': True, 'casual': False}", 'CoatCheck': 'True', 'Smoking': "u'no'", 'GoodForMeal': "{'d...
Bars, Cocktail Bars, Coffee & Tea, Food, Restaurants, Cafes, Steakhouses, Nightlife, Tapas/Small Plates
{'Monday': '8:0-23:0', 'Tuesday': '8:0-23:0', 'Wednesday': '8:0-23:0', 'Thursday': '8:0-23:0', 'Friday': '8:0-23:0', 'Saturday': '8:0-23:0', 'Sunday': '8:0-23:0'}
['QqJuOrcijegZAkH-KX2LJQ', 'IAE3aGKER-lGLnRXYUSCAg', '1K6RWX9VFhVeB_dkBwDtBQ', 'd1j8NyfQGdlHvsuhxMVatQ', '9UFte3mCAjMLBID53NKfAA', 'dUymD6C7zumimGYq5TjYNw', 'NEDnL_CgJX5IAq73S383BQ', 'GefFG5fSgV1Z86rayEpZPg', '7Vw7BAjjTpg465Vr0xUb9g', 'SCxK9p3WS0Q71W4O5v9QJQ', 'zozGx5X2a3m0vIxC_x8mzQ', 'WEHemgpdaJu1bt-VccI4hA', 'g1c8ul...
SFKjUQ1gmfwm7cJhMCFmkA
ZigZag Scallop
4417 Calienta St
Hernando Beach
FL
34607
28.4977
-82.650015
4
214
1
{'Alcohol': "'full_bar'", 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", 'NoiseLevel': "'average'", 'GoodForDancing': 'False', 'WiFi': "u'free'", 'RestaurantsTakeOut': 'True', 'BusinessAcceptsCreditCards': 'True', 'HasTV': 'True', 'GoodForKid...
Nightlife, Seafood, Bars, Restaurants, American (Traditional)
{'Monday': '11:30-21:0', 'Thursday': '11:30-21:0', 'Friday': '11:30-22:0', 'Saturday': '11:30-22:0', 'Sunday': '11:30-21:0'}
['tPm2F8WycNamisXtCMVTjg', 'ARFF8fNGyDBaW-AlfNnF-A']
IbndcMURguByburM72o3SA
State Street Kitchen
24 S State St
Newtown
PA
18940
40.228543
-74.937015
4.5
124
1
{'BikeParking': 'True', 'RestaurantsDelivery': 'False', 'Ambience': "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", 'RestaurantsAttire': "u'casual'", 'BusinessParking': "{'garage': False, 'street': True, '...
Korean, American (Traditional), Sandwiches, Cheesesteaks, Restaurants, Coffee & Tea, Breakfast & Brunch, Food
{'Tuesday': '7:0-16:0', 'Wednesday': '7:0-16:0', 'Thursday': '7:0-16:0', 'Friday': '7:0-16:0', 'Saturday': '8:0-15:0', 'Sunday': '8:0-14:30'}
['9d-R3-1vo3cshnStlIeDZA', '87JMZYKbei0YfVcuDLyAVw', 'zA8Co8JkNLgmP4v_I_OcmQ']
diwwt5QBU3-Thig9SVlsOA
Brew Brothers
345 N Virginia St
Reno
NV
89501
39.529562
-119.814565
3.5
592
1
{'BusinessAcceptsCreditCards': 'True', 'GoodForKids': 'False', 'RestaurantsPriceRange2': '2', 'Alcohol': "u'full_bar'", 'BusinessAcceptsBitcoin': 'False', 'RestaurantsGoodForGroups': 'True', 'BikeParking': 'False', 'BusinessParking': "{'garage': True, 'street': True, 'validated': True, 'lot': True, 'valet': True}", 'Ou...
Bars, Nightlife, American (Traditional), Music Venues, Food, Arts & Entertainment, Restaurants, Breweries
{'Monday': '11:0-22:0', 'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-0:0', 'Saturday': '11:0-0:0', 'Sunday': '11:0-22:0'}
['7xYlOyKhdsVlLclic7W74g', 'W_rM_37v9voPK12DtdMdDA', 'w4uuN6giNMZTM6QvElqEnw', 'xj21436JLPr5T4gslkQpig', '_JElA-6fdk9fxfpaXxA5zA', '3gq1uE6GIWQ7EwsMMZ3foA', '5vOjNWyOMQD24tJkVM79Vw', '-K_iC9W0Bk0rUhPUUyNKyw', 'bc6Yz03eTqdIaJQQT4v0dw', 'k0JlGMD7u0zkCtmxjKdHLA', 'SMQ63EZoizPttEcLv5kYmw']
lB6jIOb1UBATmdfot4KJew
Soco's Gyros
5530 S Lindbergh Blvd
Saint Louis
MO
63123
38.524535
-90.355678
4
126
1
{'BusinessAcceptsCreditCards': 'True', 'RestaurantsTakeOut': 'True', 'OutdoorSeating': 'False', 'RestaurantsAttire': "u'casual'", 'RestaurantsReservations': 'False', 'BikeParking': 'True', 'Alcohol': "u'none'", 'RestaurantsPriceRange2': '1', 'WiFi': "u'no'", 'HasTV': 'False', 'GoodForKids': 'True', 'GoodForMeal': "{'de...
Delis, Kebab, Turkish, Mediterranean, Greek, Restaurants, Food
{'Monday': '11:0-19:0', 'Tuesday': '11:0-19:0', 'Wednesday': '11:0-19:0', 'Thursday': '11:0-19:0', 'Friday': '11:0-19:0', 'Saturday': '11:0-19:0'}
null
cm0bhBDPM3bjBefmEXa3BQ
Nudy's Cafe - Chadds Ford
240 Painters' Crossing
Chadds Ford
PA
19317
39.88086
-75.548277
3.5
63
1
{'RestaurantsReservations': 'False', 'Caters': 'False', 'WheelchairAccessible': 'True', 'BusinessAcceptsCreditCards': 'True', 'BikeParking': 'False', 'BusinessAcceptsBitcoin': 'False', 'RestaurantsTableService': 'True', 'RestaurantsAttire': "'casual'", 'RestaurantsTakeOut': 'True', 'OutdoorSeating': 'True', 'NoiseLevel...
Breakfast & Brunch, Restaurants, American (Traditional)
{'Monday': '7:0-16:0', 'Tuesday': '7:0-16:0', 'Wednesday': '7:0-16:0', 'Thursday': '7:0-16:0', 'Friday': '7:0-16:0', 'Saturday': '7:0-15:0', 'Sunday': '7:0-15:0'}
['oAXsOzMPinlujAXcXmRTfA', 'owTAsxDvK7P2pihSHWQ0Mg', 'FWVHyDKE6jODjVPy1A4ivQ', 'XTpiytRMENQye8M17EiWmQ']
TJe1ZGe-X0-GjOQd00kKxA
Brixx Craft House
7700 W State St, Ste 100
Boise
ID
83714
43.671633
-116.283591
4
115
1
{'HasTV': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': False, 'dinner': False, 'brunch': False, 'breakfast': False}", 'RestaurantsTableService': 'True', 'DogsAllowed': 'True', 'Alcohol': ...
American (Traditional), Pubs, Sports Bars, Nightlife, Bars, Gastropubs, Beer Bar, Restaurants, Cocktail Bars
{'Monday': '0:0-0:0', 'Tuesday': '11:30-21:0', 'Wednesday': '11:30-21:0', 'Thursday': '11:30-22:0', 'Friday': '11:30-22:0', 'Saturday': '11:30-22:0', 'Sunday': '10:0-20:0'}
['MbSjYWm9rwINJgV8e3CfMg']
HCbJPXWXvwN-C7XfmVy3gA
Granite City Food & Brewery
49 W Maryland St, Ste B03A
Indianapolis
IN
46204
39.76642
-86.159245
3.5
258
0
{'RestaurantsGoodForGroups': 'True', 'Ambience': "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", 'HasTV': 'True', 'BusinessAcceptsCreditCards': 'True', 'BusinessParking': "{'garage': True, 'street': True, ...
Desserts, Breweries, Breakfast & Brunch, Restaurants, Barbeque, American (New), Food, American (Traditional)
{'Monday': '11:0-18:0', 'Tuesday': '11:0-0:0', 'Wednesday': '11:0-0:0', 'Thursday': '11:0-0:0', 'Friday': '11:0-0:0', 'Saturday': '11:0-1:0', 'Sunday': '8:0-21:0'}
['wBj7DcXuBvzH4MSHsAICtw', '3w6iQfgQ1LZiLAJsIBysNQ', 'ruTZhQn5ffhW8gSCJSsNtQ', 'ya-oTo71kra9gHVrx2JJ2A']
uKEabBQrn0gLzvTppOrKIA
Casita Taqueria
2701 4th St
Saint Petersburg
FL
33704
27.796976
-82.638168
4.5
207
1
{'Caters': 'True', 'HasTV': 'True', 'RestaurantsTableService': 'True', 'RestaurantsReservations': 'False', 'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'True', 'WiFi': "'no'", 'Alcohol': "'beer_and_wine'", 'BikeParking': 'True', 'NoiseLevel': "'average'", 'RestaurantsAttire': "'casual'", 'HappyHour...
Mexican, Restaurants
{'Monday': '11:0-21:0', 'Tuesday': '11:0-21:0', 'Wednesday': '11:0-21:0', 'Thursday': '11:0-21:0', 'Friday': '11:0-22:0', 'Saturday': '11:0-22:0'}
null
rF0xI_3jjlsEKp3N0Z0BuQ
Trattoria Totaro
639 Spring Mill Ave
Conshohocken
PA
19428
40.075052
-75.294524
4
135
1
{'WiFi': "u'no'", 'RestaurantsPriceRange2': '2', 'BusinessAcceptsCreditCards': 'True', 'RestaurantsReservations': 'True', 'OutdoorSeating': 'True', 'HasTV': 'False', 'RestaurantsTakeOut': 'True', 'Caters': 'True', 'NoiseLevel': "'average'", 'Alcohol': "u'none'", 'RestaurantsGoodForGroups': 'True', 'BikeParking': 'True'...
Italian, Restaurants
{'Monday': '17:0-21:0', 'Tuesday': '17:0-21:0', 'Wednesday': '17:0-21:0', 'Thursday': '17:0-21:0', 'Friday': '17:0-21:0', 'Saturday': '17:0-21:0', 'Sunday': '17:0-21:0'}
['KSJM7rohZhKsJXjG26OXlA']
qma1sGQv7ArUtzuUTQElRg
Katie's Pizza & Pasta Osteria
14171 Clayton Rd
Town and Country
MO
63017
38.62468
-90.515066
4
313
1
{'RestaurantsReservations': 'True', 'RestaurantsPriceRange2': '2', 'BikeParking': 'False', 'HappyHour': 'True', 'RestaurantsDelivery': 'False', 'DogsAllowed': 'False', 'OutdoorSeating': 'True', 'WheelchairAccessible': 'True', 'Caters': 'True', 'ByAppointmentOnly': 'False', 'BusinessParking': "{'garage': False, 'street'...
Pasta Shops, Bars, Nightlife, Specialty Food, Cocktail Bars, Breakfast & Brunch, Restaurants, Pizza, Food, Italian
{'Monday': '11:0-22:0', 'Tuesday': '11:0-22:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-23:0', 'Saturday': '11:0-23:0', 'Sunday': '11:0-22:0'}
['dpkWb-Og-8b9A2Xvzdk3Gg', 'Pc-2H95v1hsLGFM-XGPBXA', 'daH9OCITZ8baU74ebFI2lg', '6o9DDdVfDooHJAxY5MFffQ', 'qHvxaoJ8JKtXdyLHgbW4FA', 'LzqlyTQ0Re9p4W3mTN7sQw', 'bwKqL_jzoTnxx-fF4JhFcw', 'mOIaD-lZ-tAq40rSg2d3Dw', 'xnufDvidIx7jSurQLJEKhA', 'AeV8SJtMVLD7cYujosUjWQ', 'eVa0fH614Us2Z1KkvkUlMg', 'GMdZiqdjCOYnoBzQ-S7sQg', 'yB8JWI...
zjQDk4tZyhEroyqtkgvx0g
The Cobblestone Eatery and Drinkery
115 W St Louis St
Lebanon
IL
62254
38.604107
-89.808533
3.5
52
1
{'RestaurantsDelivery': 'False', 'BestNights': "{'monday': False, 'tuesday': False, 'friday': False, 'wednesday': False, 'thursday': False, 'sunday': False, 'saturday': False}", 'Music': "{'dj': False, 'background_music': False, 'no_music': False, 'jukebox': False, 'live': False, 'video': False, 'karaoke': False}", 'Wi...
American (Traditional), Nightlife, Breakfast & Brunch, Event Planning & Services, Venues & Event Spaces, Italian, Bars, Restaurants
{'Monday': '11:0-2:0', 'Tuesday': '11:0-2:0', 'Wednesday': '11:0-2:0', 'Thursday': '11:0-2:0', 'Friday': '11:0-2:0', 'Saturday': '11:0-2:0', 'Sunday': '11:0-2:0'}
['z8HFOWYCtq2x_LPF36tT9Q', 'FcWzSRI4CmPNuECjNhK2IQ']
EEc3X2r94uNhCz_jOTSzHg
Blackrock Brewers
1664 South Research Lp, Ste 200
Tucson
AZ
85710
32.201454
-110.823107
4.5
35
1
{'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'HasTV': 'False', 'RestaurantsReservations': 'False', 'RestaurantsPriceRange2': '1', 'BusinessAcceptsCreditCards': 'True', 'BikeParking': 'True', 'WiFi': "'free'", 'RestaurantsGoodForGroups': 'True', 'DogsAllowed'...
Food, Breweries, Pubs, Beer Bar, Nightlife, Bars
{'Monday': '15:0-20:0', 'Tuesday': '14:30-21:0', 'Wednesday': '14:30-21:0', 'Thursday': '14:30-22:0', 'Friday': '14:30-22:0', 'Saturday': '12:0-22:0', 'Sunday': '14:0-19:0'}
['fQSj0YN8Espj0biomo1lwA', 'WeGSRypAtrg1jCaTJU4PDg', 'mMQKFvZwbyzhCAZB40eiYg']
-kY_HDP7IMvGl-kBIZVU4A
Dune Coffee Roasters - Anacapa
528 Anacapa St
Santa Barbara
CA
93101
34.418994
-119.695068
4
320
1
{'RestaurantsPriceRange2': '2', 'BusinessAcceptsCreditCards': 'True', 'WiFi': "u'free'", 'BikeParking': 'True', 'Caters': 'False', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'NoiseLevel': "u'average'", 'RestaurantsTakeOut': 'True', 'OutdoorSeating': 'None'}
Coffee & Tea, Coffee Roasteries, Food
{'Monday': '6:0-17:0', 'Tuesday': '6:0-17:0', 'Wednesday': '6:0-17:0', 'Thursday': '6:0-17:0', 'Friday': '6:0-17:0', 'Saturday': '6:0-17:0', 'Sunday': '7:0-17:0'}
['Y1QsvH8zZtdVHtyU265OIg', 'kTILb2ZHZGdJcFsg-G5L1w', 'D2AMrJGiQTVbhXpWuUrUiw', 'bxQWlD9KCWPomgUw1mlwmg', 'Ez9sOJ14ZPydtoZBGBnwXw', 'L9Q_kuws37FoD0MdaFyf4Q', 'mfesBUfOhaf-iHuC3zNhDw', '6RaEaormFNVDEnc2iAjAKg', 'cYAM60fKyx7KBIJzpIh3bA', 'E6UD6Ic9v9JdscO6m6L13A', 'S5W05LDDXX8Z8ZjCzTlv_g', 'h0f6E9xMlxSARyFR04TA9A', 'ecnaxg...
UX3eq0WsVva-cqlVrzyzFg
Cantina Los Tres Hombres
926 Victorian Ave
Sparks
NV
89431
39.535111
-119.754857
3
284
1
{'HasTV': 'True', 'RestaurantsPriceRange2': '2', 'BikeParking': 'True', 'RestaurantsGoodForGroups': 'True', 'Caters': 'True', 'RestaurantsAttire': "'casual'", 'Alcohol': "'full_bar'", 'GoodForKids': 'True', 'RestaurantsReservations': 'True', 'OutdoorSeating': 'True', 'RestaurantsTakeOut': 'True', 'HappyHour': 'True', '...
Bars, Nightlife, Mexican, Restaurants, Seafood
{'Monday': '11:0-20:0', 'Tuesday': '11:0-20:0', 'Wednesday': '11:0-20:0', 'Thursday': '11:0-20:0', 'Friday': '11:0-21:0', 'Saturday': '11:0-21:0', 'Sunday': '11:0-20:0'}
null
GILL0ZkvVXJaNQzYRXfMQw
Paris Parker Salon & Spa
4900 Prytania St
New Orleans
LA
70115
29.924421
-90.107934
4
119
1
{'ByAppointmentOnly': 'True', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': False, 'valet': False}", 'RestaurantsPriceRange2': '2', 'GoodForKids': 'True', 'BusinessAcceptsCreditCards': 'True', 'BikeParking': 'True', 'WiFi': "u'free'"}
Hair Salons, Beauty & Spas, Nail Salons, Day Spas, Hair Removal, Waxing, Hair Extensions
{'Monday': '0:0-0:0', 'Tuesday': '8:0-20:0', 'Wednesday': '8:0-20:0', 'Thursday': '8:0-20:0', 'Friday': '8:0-20:0', 'Saturday': '8:0-20:0', 'Sunday': '9:0-18:0'}
null
sophKEDc2rBDe-cuOaJDkA
365 Caffe Italiano
28210 Paseo Dr, Ste 100, Shops At Wiregrass
Wesley Chapel
FL
33543
28.187947
-82.350056
4.5
127
1
{'WiFi': "'free'", 'Alcohol': "'none'", 'RestaurantsGoodForGroups': 'True', 'RestaurantsAttire': "'casual'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': True}", 'GoodForMeal': "{'dessert': True, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': True, 'bre...
Breakfast & Brunch, Coffee & Tea, Food, Ice Cream & Frozen Yogurt, Creperies, Gelato, Comfort Food, Sandwiches, Restaurants, Cafes
{'Monday': '9:0-19:0', 'Tuesday': '10:0-20:30', 'Wednesday': '10:0-20:30', 'Thursday': '18:0-1:0', 'Friday': '10:0-21:0', 'Saturday': '10:0-21:0', 'Sunday': '10:0-19:0'}
['U8-BuOy4FB6ggu6rABnhZQ', 'm40dog8W-kqXL1RZOEyjRQ', '3B0SUjuOqhqL3sQLU7EOaQ', 'P1xM_hYn9YRHSCCb6zBCFg', 'scTKoAquYq0Rs7dHMcviug']
18eWJFJbXyR9j_5xfcRLYA
Siam Elephant
509 Linden Ave
Carpinteria
CA
93013
34.39651
-119.521682
4.5
460
1
{'RestaurantsGoodForGroups': 'True', 'Alcohol': "u'beer_and_wine'", 'RestaurantsReservations': 'True', 'BikeParking': 'True', 'WiFi': "u'no'", 'BusinessAcceptsCreditCards': 'True', 'NoiseLevel': "u'average'", 'GoodForKids': 'True', 'RestaurantsPriceRange2': '2', 'RestaurantsAttire': "'casual'", 'ByAppointmentOnly': 'Fa...
Restaurants, Thai
{'Tuesday': '17:0-21:30', 'Wednesday': '17:0-21:30', 'Thursday': '17:0-21:30', 'Friday': '17:0-21:30', 'Saturday': '12:0-21:30', 'Sunday': '12:0-21:30'}
['lA0x_z8j5r4p5pik4SlM-A', '1xVh13OVFoRavwcHAALm5Q', '9Hl-lQwiqx_nSNQ9tEYiYQ', 'lDmi48qemVw4-NY5hnwHsg', 'mxFo7QydNspLfquUW9LT5Q', 'ZWQ4171eNSFTnrEQe_A76w', 'BpdRfMW1DHaEee1IcfmDxg', 'ssNzj7JJm-nb0Gzf9UNz5Q', 'r9gUPt8UL9DEUNzFG1j5Fg', 'aIjyDBX3JTxhexUyZR3H8A', 'Ml3tLvK7BsFiDmL20eGJfQ', 'MPpOX0AU9x_cTPnJnEXDsQ']
PdMXmOWDRHICAx6SLgu1dQ
24
2401 Walnut St
Philadelphia
PA
19103
39.951521
-75.179873
3.5
111
0
{'BikeParking': 'True', 'RestaurantsTableService': 'True', 'WiFi': "u'free'", 'Caters': 'True', 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': True, 'brunch': False, 'breakfast': False}", 'GoodForDancing': 'False', 'HappyHour': 'True', 'DogsAllowed': 'False', 'Alcohol': "u'full_bar'", '...
Italian, Bars, Restaurants, Nightlife, Wine Bars, Breakfast & Brunch
{'Monday': '17:0-21:0', 'Tuesday': '17:0-21:0', 'Wednesday': '17:0-21:0', 'Thursday': '17:0-21:0', 'Friday': '17:0-22:0', 'Saturday': '11:0-22:0', 'Sunday': '11:0-21:0'}
['VW5UwQJBEJ6nf63WKzVNOQ', 'sK9w972Lpt4tsAnx9pkRXA']
ELKgARoj5UNjQXUkX8T8KQ
Laundromat
2509 E 65th St
Indianapolis
IN
46220
39.874886
-86.119551
4.5
78
1
{'RestaurantsPriceRange2': '2', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'ByAppointmentOnly': 'False', 'WiFi': "u'free'", 'BikeParking': 'True', 'BusinessAcceptsCreditCards': 'True', 'BusinessAcceptsBitcoin': 'False'}
Local Services, Laundry Services, Dry Cleaning & Laundry, Laundromat
{'Monday': '0:0-0:0', 'Tuesday': '7:0-21:30', 'Wednesday': '7:0-21:30', 'Thursday': '7:0-17:0', 'Friday': '7:0-21:30', 'Saturday': '7:0-21:30', 'Sunday': '7:0-21:30'}
null
dD2p903p8lU0IgXT3OFluA
Edgehill Cafe
1201 Villa Pl
Nashville
TN
37212
36.142969
-86.792355
3.5
245
0
{'RestaurantsDelivery': 'False', 'HasTV': 'False', 'RestaurantsGoodForGroups': 'True', 'Alcohol': "u'beer_and_wine'", 'RestaurantsAttire': "u'casual'", 'BikeParking': 'True', 'NoiseLevel': "u'average'", 'RestaurantsReservations': 'False', 'BusinessParking': "{'garage': False, 'street': True, 'validated': False, 'lot': ...
Breakfast & Brunch, Restaurants, Food, Cafes, Coffee & Tea, American (Traditional), Sandwiches
{'Monday': '9:0-15:0', 'Tuesday': '7:0-15:0', 'Wednesday': '7:0-15:0', 'Thursday': '7:0-15:0', 'Friday': '7:0-15:0', 'Saturday': '7:0-15:0', 'Sunday': '7:0-15:0'}
['DHzUd31XNktRKF2mLIvhXg', 'a_tPqFq4uL4ev_QiUls17A', 'S48HOEBm_xraucgZLb82Gw', 'trrsqWkf1ScPRVCmYWIiDQ', '8Prtj8o1m353zAxRsVBbSg', 'IDeG9nbqpkzmtqoEe4YDuw']
dBCNUSbz5-8nQNrxWo5deg
Blue Sage Vegetarian Grille
727 2nd St Pike
Southampton
PA
18966
40.175108
-75.043226
4.5
572
1
{'RestaurantsReservations': 'True', 'RestaurantsPriceRange2': '2', 'BikeParking': 'False', 'RestaurantsAttire': "'casual'", 'GoodForKids': 'False', 'Caters': 'False', 'BusinessAcceptsCreditCards': 'True', 'Alcohol': "'none'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet...
Restaurants, Vegan, Vegetarian
{'Wednesday': '16:0-20:0', 'Thursday': '16:0-20:0', 'Friday': '16:0-20:30', 'Saturday': '16:0-20:30', 'Sunday': '16:0-20:0'}
['Bv34bFmndIyzd5tXy7AUMQ', 'kFuOeW32f2YXHP14zzcjwg']
6mCsrUp9Vl4iXMbOxWtVjA
Dosa Hut Indian Grill
4047 Nolensville Pike
Nashville
TN
37211
36.081011
-86.728065
4
99
0
{'HasTV': 'True', 'GoodForKids': 'True', 'GoodForMeal': "{'dessert': False, 'latenight': False, 'lunch': True, 'dinner': False, 'brunch': False, 'breakfast': False}", 'Caters': 'True', 'RestaurantsPriceRange2': '1', 'BusinessAcceptsCreditCards': 'True', 'OutdoorSeating': 'False', 'WheelchairAccessible': 'True', 'Alcoho...
Restaurants, Indian
{'Tuesday': '17:30-21:30', 'Wednesday': '17:30-21:30', 'Thursday': '11:30-21:30', 'Friday': '11:30-21:30', 'Saturday': '11:30-21:30', 'Sunday': '11:30-21:30'}
['0Eshe9OQVeZyeVERwKfO7w', '4g-9kS0ZPOmTTxXOggoVhQ']
71U7MxQEhwitJOm4CQpRwQ
KELP Sushi Joint
3401 W Bay To Bay Blvd, Ste D
Tampa
FL
33629
27.920067
-82.498921
4
325
1
{'RestaurantsAttire': "u'casual'", 'HasTV': 'False', 'WiFi': "u'free'", 'NoiseLevel': "u'average'", 'RestaurantsPriceRange2': '2', 'BikeParking': 'True', 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsTakeOut': 'True', 'Caters': 'True', 'WheelchairA...
Japanese, Sushi Bars, Food, Restaurants, Asian Fusion, Poke, Acai Bowls
{'Monday': '0:0-0:0', 'Tuesday': '11:0-16:0', 'Wednesday': '11:0-22:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-20:0', 'Saturday': '16:0-22:0', 'Sunday': '11:0-22:0'}
['A4VfIYd1p2R1kmkGxCPj-g', '1gySXxDVx0BGAiZhq8615A', 'EJGEgqdzJXXZ9nPDg54Tdg', 'BkuzHmuRM-04g-EugHw-ug', 'pFHG_5iM1DQG4T8K95L1qg', 'RKD_Ekqlqf7mSEqiPWCUsw', 'TNrdJtx-juLSgJMu2LxIVA', 'JWgiyZQM8AB-7KuFutbAxw', 'NNlSHFAC-g_4sQQcdARoJw', 'dE3gOLTMwAjCtbMsTvt8rQ', '1VOxS6e1889bIUxq-bKYOQ', '35-8OAKl-BnMv-b0ifS5Ug', 'cWIn0Z...
sWCCxY1-9B1FGlSVeQvnHg
CD Roma Restaurant
1462 66th St N
St Petersburg
FL
33710
27.785489
-82.730295
4
125
1
{'RestaurantsDelivery': 'True', 'WiFi': "u'free'", 'GoodForKids': 'True', 'Caters': 'True', 'OutdoorSeating': 'True', 'Ambience': "{'romantic': False, 'intimate': False, 'touristy': False, 'hipster': False, 'divey': False, 'classy': False, 'trendy': False, 'upscale': False, 'casual': True}", 'Alcohol': "u'beer_and_wine...
Restaurants, Wine Bars, Italian, Food, Sandwiches, Nightlife, Breweries, Bars, Pizza
{'Monday': '0:0-0:0', 'Tuesday': '11:0-21:0', 'Wednesday': '11:0-21:0', 'Thursday': '11:0-22:0', 'Friday': '11:0-19:0', 'Saturday': '11:0-22:0', 'Sunday': '11:0-21:0'}
['uW2nVloeXRqGVgCQMhHVZg', 'dEsMRRokTHEuHtXq9NQmeg', 'IMDJaVINN9hmHfg95phDBA', 'Gv-HJ876Gu_Wbmnx6Sknng']
ZH-D4qbLggBSvwpF0zXrQQ
The Original Pancake House
5900 W Fariview Ave
Boise
ID
83704
43.619246
-116.254688
4
155
1
{'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'RestaurantsPriceRange2': '2', 'OutdoorSeating': 'False', 'Alcohol': "u'none'", 'Caters': 'False', 'RestaurantsGoodForGroups': 'True', 'RestaurantsTakeOut': 'True', 'RestaurantsAttire': "u'casual'", 'RestaurantsRe...
Breakfast & Brunch, Restaurants
{'Monday': '0:0-0:0', 'Tuesday': '7:0-13:0', 'Wednesday': '7:0-13:0', 'Thursday': '7:0-13:0', 'Friday': '7:0-13:0', 'Saturday': '8:0-14:0', 'Sunday': '7:30-14:0'}
['MTn4SIjOiUCA3SYNIn20Fg', '03zzwdofSO2ReFgJbpL5JQ']
zIDuAuwyaLmNwv4k18mbwA
India Palace
4213 Lafayette Rd
Indianapolis
IN
46254
39.831776
-86.240421
3.5
167
1
{'RestaurantsPriceRange2': '2', 'RestaurantsTakeOut': 'True', 'BikeParking': 'False', 'RestaurantsAttire': "'casual'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsGoodForGroups': 'True', 'WiFi': "u'no'", 'BusinessParking': "{'garage': False, 'street': False, 'validated': False, 'lot': True, 'valet': False}", 'Goo...
Indian, Restaurants, Pakistani, American (New)
{'Monday': '16:0-21:30', 'Tuesday': '16:0-21:30', 'Wednesday': '16:0-21:30', 'Thursday': '16:0-21:30', 'Friday': '16:0-21:30', 'Saturday': '11:0-22:0', 'Sunday': '11:0-21:30'}
['4aUkvkw752hIX58RmD_qCw', 'Km2WdnjJFKJDGtd7cRNrMw', 't89sVqCOzg4mNbN_c-rlrg', '0yg5sgZ-fO4A7uS-GtwLzg', '0IcEdqZp5TjTYbtfbqb5RA', 'jz0ZN-PnxtFgNO0gUgT0PA', 'Bagyx-_Qsgy5O7s-ggwFzg', 'VNpvgxhjaBYtdopvfmsPEQ', 'NIvWgAuJJsChJlTYIQK_yw', 'KDUHerZKYbhFsrsYyV8n1w']
zQ62qOqUQScSb7ZCTLbpGg
Octopus Car Wash
7210 E 22nd St
Tucson
AZ
85710
32.206182
-110.83826
2
90
1
{'BusinessAcceptsCreditCards': 'True'}
Automotive, Car Wash, Auto Detailing
null
null
JomDoQafikclSVVCPkWjnA
Cedar Park Cafe
4914 Baltimore Ave
Philadelphia
PA
19143
39.94796
-75.22198
4
301
1
{'WiFi': "u'no'", 'OutdoorSeating': 'False', 'RestaurantsAttire': "u'casual'", 'BusinessAcceptsCreditCards': 'True', 'RestaurantsPriceRange2': '1', 'GoodForKids': 'True', 'RestaurantsGoodForGroups': 'True', 'RestaurantsTakeOut': 'True', 'Alcohol': "u'none'", 'RestaurantsReservations': 'False', 'NoiseLevel': "u'average'...
Diners, Restaurants, Sandwiches, Breakfast & Brunch, Vegetarian
{'Monday': '7:0-15:0', 'Tuesday': '7:0-15:0', 'Wednesday': '7:0-15:0', 'Thursday': '7:0-15:0', 'Friday': '7:0-15:0', 'Saturday': '7:0-15:30', 'Sunday': '7:0-15:30'}
['yzLZyBqzm65OIsEp89784w', 'inHVvR_YwNHEIKpS7MKrJw']
1ddqdY_piKp-abaZ-bGRSA
Crescent City Steak House
1001 N Broad St
New Orleans
LA
70119
29.973325
-90.081024
3.5
226
1
{'RestaurantsPriceRange2': '3', 'RestaurantsTakeOut': 'True', 'Alcohol': "u'full_bar'", 'BikeParking': 'True', 'OutdoorSeating': 'False', 'RestaurantsReservations': 'True', 'RestaurantsDelivery': 'False', 'RestaurantsGoodForGroups': 'True', 'NoiseLevel': "u'average'", 'WiFi': "u'no'", 'RestaurantsAttire': "'casual'", '...
Steakhouses, Restaurants
{'Tuesday': '16:0-21:0', 'Wednesday': '11:30-21:0', 'Thursday': '11:30-21:0', 'Friday': '11:30-21:30', 'Saturday': '16:0-21:30', 'Sunday': '12:0-21:0'}
['trQ0J01iBBWahjvpQw1Wew', 'ppzZtYNVc54A60t31P1neg', 'j_YH_nZ0FY5PYvMjENMMxA', 'rhOKfM539c-jURDwMgZLww', 'm62lukBAYnq8LBSAk2Q0cQ', '5-dXpvvIuRbjaoO-wI68HQ', 'LshYosGKF9rSlzyQpslt9A', 'q-2i8fx87pt5mu2U9Iiyug', 'vACvwpDWultwSUmWSYPLeg', 'tdw9t6OYVLiI4AFB741wcA', 'Jr_9ud9KmqYnW0ZdJrdhzQ', 'aCTINMfeBmXpneZx3gQd-A', 'xmGi7X...
End of preview.